mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-24 11:44:14 +01:00
13 lines
193 B
PHP
13 lines
193 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
// class that is used all over the code
|
|
// autoloaded manually via composer to keep the rest of code clean
|
|
namespace SomeNamespace;
|
|
|
|
final class SomeClass
|
|
{
|
|
|
|
}
|