Spatie\SlashCommand\Request::all PHP Method

all() public method

public all ( ) : array
return array
    public function all() : array
    {
        return get_object_vars($this);
    }

Usage Example

 public static function noHandlerFound(Request $request)
 {
     return new static('There is no handler found that can handle request ' . print_r($request->all(), true));
 }