annotate vendor/typo3/phar-stream-wrapper/src/Assertable.php @ 4:a9cd425dd02b

Update, including to Drupal core 8.6.10
author Chris Cannam
date Thu, 28 Feb 2019 13:11:55 +0000
parents
children
rev   line source
Chris@4 1 <?php
Chris@4 2 namespace TYPO3\PharStreamWrapper;
Chris@4 3
Chris@4 4 /*
Chris@4 5 * This file is part of the TYPO3 project.
Chris@4 6 *
Chris@4 7 * It is free software; you can redistribute it and/or modify it under the terms
Chris@4 8 * of the MIT License (MIT). For the full copyright and license information,
Chris@4 9 * please read the LICENSE file that was distributed with this source code.
Chris@4 10 *
Chris@4 11 * The TYPO3 project - inspiring people to share!
Chris@4 12 */
Chris@4 13
Chris@4 14 interface Assertable
Chris@4 15 {
Chris@4 16 /**
Chris@4 17 * @param string $path
Chris@4 18 * @param string $command
Chris@4 19 * @return bool
Chris@4 20 */
Chris@4 21 public function assert($path, $command);
Chris@4 22 }