annotate vendor/phpspec/prophecy/src/Prophecy/Doubler/ClassPatch/ClassPatchInterface.php @ 0:4c8ae668cc8c

Initial import (non-working)
author Chris Cannam
date Wed, 29 Nov 2017 16:09:58 +0000
parents
children
rev   line source
Chris@0 1 <?php
Chris@0 2
Chris@0 3 /*
Chris@0 4 * This file is part of the Prophecy.
Chris@0 5 * (c) Konstantin Kudryashov <ever.zet@gmail.com>
Chris@0 6 * Marcello Duarte <marcello.duarte@gmail.com>
Chris@0 7 *
Chris@0 8 * For the full copyright and license information, please view the LICENSE
Chris@0 9 * file that was distributed with this source code.
Chris@0 10 */
Chris@0 11
Chris@0 12 namespace Prophecy\Doubler\ClassPatch;
Chris@0 13
Chris@0 14 use Prophecy\Doubler\Generator\Node\ClassNode;
Chris@0 15
Chris@0 16 /**
Chris@0 17 * Class patch interface.
Chris@0 18 * Class patches extend doubles functionality or help
Chris@0 19 * Prophecy to avoid some internal PHP bugs.
Chris@0 20 *
Chris@0 21 * @author Konstantin Kudryashov <ever.zet@gmail.com>
Chris@0 22 */
Chris@0 23 interface ClassPatchInterface
Chris@0 24 {
Chris@0 25 /**
Chris@0 26 * Checks if patch supports specific class node.
Chris@0 27 *
Chris@0 28 * @param ClassNode $node
Chris@0 29 *
Chris@0 30 * @return bool
Chris@0 31 */
Chris@0 32 public function supports(ClassNode $node);
Chris@0 33
Chris@0 34 /**
Chris@0 35 * Applies patch to the specific class node.
Chris@0 36 *
Chris@0 37 * @param ClassNode $node
Chris@0 38 * @return void
Chris@0 39 */
Chris@0 40 public function apply(ClassNode $node);
Chris@0 41
Chris@0 42 /**
Chris@0 43 * Returns patch priority, which determines when patch will be applied.
Chris@0 44 *
Chris@0 45 * @return int Priority number (higher - earlier)
Chris@0 46 */
Chris@0 47 public function getPriority();
Chris@0 48 }