Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Call / Call.php
1 <?php
2
3 /*
4  * This file is part of the Behat Testwork.
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\Testwork\Call;
12
13 /**
14  * Represents any call made inside testwork.
15  *
16  * @author Konstantin Kudryashov <ever.zet@gmail.com>
17  */
18 interface Call
19 {
20     /**
21      * Returns callee.
22      *
23      * @return Callee
24      */
25     public function getCallee();
26
27     /**
28      * Returns bound callable.
29      *
30      * @return callable
31      */
32     public function getBoundCallable();
33
34     /**
35      * Returns call arguments.
36      *
37      * @return array
38      */
39     public function getArguments();
40
41     /**
42      * Returns call error reporting level.
43      *
44      * @return null|integer
45      */
46     public function getErrorReportingLevel();
47 }