Source of file TestDataResponse.php
Size: 0,476 Bytes - Last Modified: 2019-08-09T18:27:54+00:00
/home/travis/build/zerospam/sdk-framework/tests/src/Base/Data/Response/TestDataResponse.php
12345678910111213141516171819202122232425262728 | <?php /** * Created by PhpStorm. * User: aaflalo * Date: 18-07-17 * Time: 11:02 */ namespace ZEROSPAM\Framework\SDK\Test\Base\Data\Response; /** * Class TestDataResponse * * @property-read TestResponse $data * @package ZEROSPAM\Framework\SDK\Test\Base\Data */ class TestDataResponse extends TestResponse { /** * @return TestResponse */ public function getDataAttribute(): TestResponse { return new TestResponse($this->data); } } |