Example #1
0
 public function testReturnCorrectValueWhenNotInitiated()
 {
     $active = new Active(null);
     $this->assertFalse($active->checkAction([]));
     $this->assertFalse($active->checkRouteParam('', ''));
     $this->assertFalse($active->checkRoute([]));
     $this->assertFalse($active->checkRoutePattern([]));
     $this->assertFalse($active->checkUriPattern([]));
     $this->assertFalse($active->checkUri([]));
     $this->assertFalse($active->checkQuery('', ''));
     $this->assertFalse($active->checkController([]));
     $this->assertSame('', $active->getAction());
     $this->assertSame('', $active->getController());
     $this->assertSame('', $active->getMethod());
 }
Example #2
0
 /**
  * Check if the URI of the current request matches one of the specific URIs
  *
  * @param array $uris
  * @return bool 
  * @static 
  */
 public static function checkUri($uris)
 {
     return \HieuLe\Active\Active::checkUri($uris);
 }