Example #1
0
 /**
  * Tests adding an anonymous function as a callback
  */
 public function testAnonFuncSelector()
 {
     $this->collection->addSelector('::test::', function ($collection, $key, $matches) {
         return true;
     });
     $this->assertTrue($this->collection['::test::']);
 }