for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @author Patsura Dmitry https://github.com/ovr <[email protected]>
*/
namespace PHPSA\Definition;
use PHPSA\ScopePointer;
* Abstract Definition with namespace added
abstract class ParentDefinition extends AbstractDefinition
{
* @var string
protected $namespace;
* @return string
public function getNamespace()
return $this->namespace;
}
* @param string $namespace
public function setNamespace($namespace)
$this->namespace = $namespace;