mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-22 18:54:39 +01:00
11 lines
192 B
PHP
11 lines
192 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
|
|
{
|
|
|
|
}
|