Fakerino\Core\Entity\EntityInfo::getMethods PHP Метод

getMethods() публичный Метод

Gets the methods of the object provided.
public getMethods ( integer $filter = ReflectionProperty::IS_PUBLIC ) : array
$filter integer
Результат array
    public function getMethods($filter = \ReflectionProperty::IS_PUBLIC)
    {
        $methods = array();
        $reflectionMethods = $this->reflectionEntity->getMethods($filter);
        foreach ($reflectionMethods as $method) {
            $methods[] = new Method($method->name, $method->isStatic());
        }
        return $methods;
    }