/vendor/phpspec/prophecy/src/Prophecy/Prophecy/ProphecySubjectInterface.php
https://bitbucket.org/alan_cordova/api-sb-map · PHP · 34 lines · 7 code · 4 blank · 23 comment · 0 complexity · 7c766011d2b710488d762dad88591ed4 MD5 · raw file
- <?php
- /*
- * This file is part of the Prophecy.
- * (c) Konstantin Kudryashov <ever.zet@gmail.com>
- * Marcello Duarte <marcello.duarte@gmail.com>
- *
- * For the full copyright and license information, please view the LICENSE
- * file that was distributed with this source code.
- */
- namespace Prophecy\Prophecy;
- /**
- * Controllable doubles interface.
- *
- * @author Konstantin Kudryashov <ever.zet@gmail.com>
- */
- interface ProphecySubjectInterface
- {
- /**
- * Sets subject prophecy.
- *
- * @param ProphecyInterface $prophecy
- */
- public function setProphecy(ProphecyInterface $prophecy);
- /**
- * Returns subject prophecy.
- *
- * @return ProphecyInterface
- */
- public function getProphecy();
- }