Created initial files for required classes of the API.

This commit is contained in:
Alex Tselegidis 2016-07-09 12:26:13 +02:00
parent 425c661631
commit 013e8ca4fe
7 changed files with 93 additions and 15 deletions

View File

@ -0,0 +1,18 @@
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace \EA\Engine\Api\V1;
class Pagination {
}

View File

@ -0,0 +1,20 @@
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace EA\Engine\Api\V1;
class FilterTest extends \PHPUnit_Framework_TestCase {
public function test() {
$this->markTestIncomplete();
}
}

View File

@ -11,10 +11,10 @@
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace \EA\Engine\Api\V1;
namespace EA\Engine\Api\V1;
use PHPUnit\Framework\TestCase;
class AuthorizationTest extends \TestCase {
class MinimizeTest extends \PHPUnit_Framework_TestCase {
public function test() {
$this->markTestIncomplete();
}
}

View File

@ -0,0 +1,20 @@
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace EA\Engine\Api\V1;
class PaginationTest extends \PHPUnit_Framework_TestCase {
public function test() {
$this->markTestIncomplete();
}
}

View File

@ -11,10 +11,10 @@
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace \EA\Engine\Api\V1;
namespace EA\Engine\Api\V1;
use PHPUnit\Framework\TestCase;
class ResponseTest extends TestCase {
class ResponseTest extends \PHPUnit_Framework_TestCase {
public function test() {
$this->markTestIncomplete();
}
}

View File

@ -11,10 +11,10 @@
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace \EA\Engine\Api\V1;
namespace EA\Engine\Api\V1;
use PHPUnit\Framework\TestCase;
class AuthorizationTest extends \TestCase {
class SearchTest extends \PHPUnit_Framework_TestCase {
public function test() {
$this->markTestIncomplete();
}
}

View File

@ -0,0 +1,20 @@
<?php
/* ----------------------------------------------------------------------------
* Easy!Appointments - Open Source Web Scheduler
*
* @package EasyAppointments
* @author A.Tselegidis <alextselegidis@gmail.com>
* @copyright Copyright (c) 2013 - 2016, Alex Tselegidis
* @license http://opensource.org/licenses/GPL-3.0 - GPLv3
* @link http://easyappointments.org
* @since v1.2.0
* ---------------------------------------------------------------------------- */
namespace EA\Engine\Api\V1;
class SortTest extends \PHPUnit_Framework_TestCase {
public function test() {
$this->markTestIncomplete();
}
}