public function testGetAll() { $_GET = ["name" => "jack", "surname" => "doe"]; $query = new Query(); $this->assertSame($_GET, $query->getAll()); }
/** * Get a value from $_GET param for the given $key. * If key doesn't not exist, $value will be returned and assigned under that key. * * @param string $key Key for which you wish to get the value. * @param mixed $value Default value that will be returned if $key doesn't exist. * * @return mixed Value of the given $key. */ public function query($key = null, $value = null) { return $this->isNull($key) ? $this->query->getAll() : $this->query->get($key, $value); }