for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Spaark\CompositeUtils\Model\Reflection;
class UseStatement extends Reflector
{
/**
* @var string
* @readable
*/
protected $classname;
protected $name;
public function __construct(string $classname, string $name)
$this->classname = $classname;
$this->name = $name;
}