diff --git a/src/ShortsTrait.php b/src/ShortsTrait.php index 2287a41..9495cf1 100644 --- a/src/ShortsTrait.php +++ b/src/ShortsTrait.php @@ -33,13 +33,14 @@ trait ShortsTrait * Alias for ->read() method * * @param bool $parse If need parse output to array + * @param array $options * * @return mixed * @since 0.7 */ - public function r(bool $parse = true) + public function r(bool $parse = true, array $options = []) { - return $this->read($parse); + return $this->read($parse, $options); } /**