Source of file DataObject.php
Size: 0,331 Bytes - Last Modified: 2019-08-09T18:27:54+00:00
/home/travis/build/zerospam/sdk-framework/src/Utils/Contracts/DataObject.php
12345678910111213141516171819202122 | <?php /** * Created by PhpStorm. * User: aaflalo * Date: 18-09-26 * Time: 13:06 */ namespace ZEROSPAM\Framework\SDK\Utils\Contracts; /** * Interface DataObject * * Represent an object that old the data used in requests * * @package ZEROSPAM\Framework\SDK\Utils\Contracts */ interface DataObject extends Arrayable { } |