public function authorize(): bool
{
    switch ($this->method()) {
        case 'POST':
            return true; // @todo store
        case 'PATCH':
            return true; // @todo update
    }
}
public function authorize(): bool
{
    switch ($this->method()) {
        case 'POST':
            return true; // @todo store
        case 'PATCH':
            return true; // @todo update
    }
}