Mercurial > hg > isophonics-drupal-site
annotate vendor/typo3/phar-stream-wrapper/src/Assertable.php @ 19:fa3358dc1485 tip
Add ndrum files
author | Chris Cannam |
---|---|
date | Wed, 28 Aug 2019 13:14:47 +0100 |
parents | 129ea1e6d783 |
children |
rev | line source |
---|---|
Chris@17 | 1 <?php |
Chris@17 | 2 namespace TYPO3\PharStreamWrapper; |
Chris@17 | 3 |
Chris@17 | 4 /* |
Chris@17 | 5 * This file is part of the TYPO3 project. |
Chris@17 | 6 * |
Chris@17 | 7 * It is free software; you can redistribute it and/or modify it under the terms |
Chris@17 | 8 * of the MIT License (MIT). For the full copyright and license information, |
Chris@17 | 9 * please read the LICENSE file that was distributed with this source code. |
Chris@17 | 10 * |
Chris@17 | 11 * The TYPO3 project - inspiring people to share! |
Chris@17 | 12 */ |
Chris@17 | 13 |
Chris@17 | 14 interface Assertable |
Chris@17 | 15 { |
Chris@17 | 16 /** |
Chris@17 | 17 * @param string $path |
Chris@17 | 18 * @param string $command |
Chris@17 | 19 * @return bool |
Chris@17 | 20 */ |
Chris@17 | 21 public function assert($path, $command); |
Chris@17 | 22 } |