We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e41cd76 commit fbe7e80Copy full SHA for fbe7e80
src/Kernel.php
@@ -4,6 +4,20 @@
4
5
use Dredd\Hooks;
6
7
+/**
8
+ * Class Kernel
9
+ *
10
+ * @package Netsells\Dredd
11
12
+ * @method Hooks\beforeAll beforeAll(callable $function)
13
+ * @method Hooks\beforeEach beforeEach(callable $function)
14
+ * @method Hooks\beforeEachValidation beforeEachValidation(callable $function)
15
+ * @method Hooks\afterEach afterEach(callable $function)
16
+ * @method Hooks\afterAll afterAll(callable $function)
17
+ * @method Hooks\before before(string $transactionName, callable $function)
18
+ * @method Hooks\beforeValidation beforeValidation(callable $function)
19
+ * @method Hooks\after after(string $transactionName, callable $function)
20
+ */
21
abstract class Kernel
22
{
23
use ResolvesArgumentTrait;
0 commit comments