for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Ruslan Molodyko.
* Date: 07.09.2016
* Time: 5:30
*/
namespace samsonframework\container\definition\scope;
* Class ControllerScope
*
* @author Ruslan Molodyko <[email protected]>
class AbstractScope
{
* Get scope id
* @return string
public static function getId(): string
return str_replace('scope', '', strtolower(preg_replace('/^.*\\\/', '', static::class)));
}