Crud\Traits\FindMethodTrait::findMethod PHP Метод

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

If $method is NULL the current value is returned else the findMethod is changed
public findMethod ( string | null $method = null ) : string
$method string | null Method name
Результат string
    public function findMethod($method = null)
    {
        if ($method === null) {
            return $this->config('findMethod');
        }
        return $this->config('findMethod', $method);
    }