コード例 #1
0
ファイル: BindTest.php プロジェクト: mvc5/tests
 /**
  *
  */
 function test_bind()
 {
     $resolver = new Resolver();
     $config = new Config();
     $callback = function () {
         return $this;
     };
     $scoped = $resolver->bind($callback, $config);
     $this->assertInstanceOf(\Closure::class, $scoped);
     $this->assertTrue($config === $scoped());
 }