for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SimplePHP\Model;
class ChildSimplePHP
{
public $realName;
public $completePath;
public function __construct(String $child)
$getCompleteChild = $child;
$getName = explode("\\", $getCompleteChild);
$this->setRealName(end($getName));
$this->setCompleteChild($getCompleteChild);
}
private function setRealName(String $name)
$this->realName = $name;
private function setCompleteChild(String $completeChild)
$this->completePath = $completeChild;