1 <?php
2 /**
3 * @author Krzysztof Gzocha <krzysztof.gzocha@xsolve.pl>
4 */
5 namespace Team3\PayU\Order\Model;
6
7 interface IsFilledInterface
8 {
9 /**
10 * Return true if given object is filled
11 *
12 * @return bool
13 */
14 public function isFilled();
15 }
16