Files
DesignPatternsPHP/Behavioral/State/OrderInterface.php
Antonio Spinelli e59d70a0ac start a restructure
2014-03-21 18:03:45 -03:00

20 lines
247 B
PHP

<?php
namespace DesignPatterns\Status;
/**
* Class OrderInterface
*/
interface OrderInterface
{
/**
* @return mixed
*/
public function shipOrder();
/**
* @return mixed
*/
public function completeOrder();
}