<?php declare(strict_types=1);
namespace Tests\Adawolfa\Implement\Definitions;
abstract class PrivateConstructorService
{
private function __construct()
{
}
}
<?php declare(strict_types=1);
namespace Tests\Adawolfa\Implement\Definitions;
abstract class PrivateConstructorService
{
private function __construct()
{
}
}