Ejemplo n.º 1
0
 public function testExtendNonExists()
 {
     $this->di->extend('b', function ($b) {
         return $b ? 'exists' : 'non-exists';
     });
     $this->assertEquals('non-exists', $this->di->b);
 }