Bravo3\Orm\Services\EntityLocator::setNormaliser PHP Method

setNormaliser() public method

This must be a callback that takes 1 argument and will return a string. Its purpose is to convert file names into class names, for example, "MyEntity.php" should return "MyEntity". It will only ever operate on the final segment of a namespace.
public setNormaliser ( callable $normaliser )
$normaliser callable
    public function setNormaliser(callable $normaliser)
    {
        $this->normaliser = $normaliser;
        return $this;
    }