for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace mxdiModule\Traits;
trait ServiceTrait
{
/**
* Get canonical name of FQCN.
*
* @param string $fqcn
* @return string
*/
private function getCanonicalName($fqcn)
return strtolower(strtr($fqcn, ['-' => '', '_' => '', ' ' => '', '\\' => '', '/' => '']));
}
* Get hash of FQCN.
private function getHash($fqcn)
return md5($this->getCanonicalName($fqcn));