Security update for permissions_by_term
[yaffs-website] / vendor / behat / behat / src / Behat / Testwork / Filesystem / FilesystemLogger.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\Filesystem;
12
13 /**
14  * Logs filesystem operations.
15  *
16  * @author Konstantin Kudryashov <ever.zet@gmail.com>
17  */
18 interface FilesystemLogger
19 {
20     /**
21      * Logs directory creation.
22      *
23      * @param string $path
24      * @param string $reason
25      */
26     public function directoryCreated($path, $reason);
27
28     /**
29      * Logs file creation.
30      *
31      * @param string $path
32      * @param string $reason
33      */
34     public function fileCreated($path, $reason);
35
36     /**
37      * Logs file update.
38      *
39      * @param string $path
40      * @param string $reason
41      */
42     public function fileUpdated($path, $reason);
43 }