Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Behat / EventDispatcher / Event / AfterOutlineSetup.php
1 <?php
2
3 /*
4  * This file is part of the Behat.
5  * (c) Konstantin Kudryashov <ever.zet@gmail.com>
6  *
7  * For the full copyright and license information, please view the LICENSE
8  * file that was distributed with this source code.
9  */
10
11 namespace Behat\Behat\EventDispatcher\Event;
12
13 use Behat\Gherkin\Node\FeatureNode;
14 use Behat\Gherkin\Node\OutlineNode;
15 use Behat\Testwork\Environment\Environment;
16 use Behat\Testwork\EventDispatcher\Event\AfterSetup;
17 use Behat\Testwork\Tester\Setup\Setup;
18
19 /**
20  * Represents an event right after outline setup.
21  *
22  * @author Konstantin Kudryashov <ever.zet@gmail.com>
23  */
24 final class AfterOutlineSetup extends OutlineTested implements AfterSetup
25 {
26     /**
27      * @var FeatureNode
28      */
29     private $feature;
30     /**
31      * @var OutlineNode
32      */
33     private $outline;
34     /**
35      * @var Setup
36      */
37     private $setup;
38
39     /**
40      * Initializes event.
41      *
42      * @param Environment $env
43      * @param FeatureNode $feature
44      * @param OutlineNode $outline
45      * @param Setup       $setup
46      */
47     public function __construct(Environment $env, FeatureNode $feature, OutlineNode $outline, Setup $setup)
48     {
49         parent::__construct($env);
50
51         $this->feature = $feature;
52         $this->outline = $outline;
53         $this->setup = $setup;
54     }
55
56     /**
57      * Returns feature.
58      *
59      * @return FeatureNode
60      */
61     public function getFeature()
62     {
63         return $this->feature;
64     }
65
66     /**
67      * Returns outline node.
68      *
69      * @return OutlineNode
70      */
71     public function getOutline()
72     {
73         return $this->outline;
74     }
75
76     /**
77      * Returns current test setup.
78      *
79      * @return Setup
80      */
81     public function getSetup()
82     {
83         return $this->setup;
84     }
85 }