コード例 #1
0
ファイル: HookMethod.php プロジェクト: jasonmccreary/pspec
 public function __construct(\Closure $closure)
 {
     parent::__construct(InvocationContext::getActive(), $closure, $this->name);
 }
コード例 #2
0
ファイル: Example.php プロジェクト: jasonmccreary/pspec
 public function __construct($name, \Closure $closure)
 {
     $invocationContext = InvocationContext::getAndAssertActiveBlock(\PSpec\Blocks\Describe::class);
     parent::__construct($invocationContext, $closure, $name);
 }