mirror of
https://github.com/alextselegidis/easyappointments.git
synced 2024-11-10 01:52:22 +03:00
Added @package tag to libraries.
This commit is contained in:
parent
2ba088a971
commit
d1a664c461
10 changed files with 49 additions and 0 deletions
|
@ -6,6 +6,9 @@
|
|||
* This driver handles all the unit testing of the application.
|
||||
* Custom methods (test categories) can be created in order to
|
||||
* use different test groups on each testing
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests extends CI_Driver_Library {
|
||||
public $CI;
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Admins Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_admins_model extends CI_Driver {
|
||||
private $ci;
|
||||
private $admin_role_id;
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Appointments Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_appointments_model extends CI_Driver {
|
||||
private $ci;
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Customers Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_customers_model extends CI_Driver {
|
||||
private $CI;
|
||||
private $customer_role_id;
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Providers Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_providers_model extends CI_Driver {
|
||||
private $ci;
|
||||
private $provider_role_id;
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Secretaries Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_secretaries_model extends CI_Driver {
|
||||
private $ci;
|
||||
private $secretary_role_id;
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Services Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_services_model extends CI_Driver {
|
||||
private $ci;
|
||||
|
||||
|
|
|
@ -1,5 +1,11 @@
|
|||
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
/**
|
||||
* Settings Model Unit Tests
|
||||
*
|
||||
* @package Libraries
|
||||
* @subpackage Tests
|
||||
*/
|
||||
class Unit_tests_settings_model extends CI_Driver {
|
||||
private $CI;
|
||||
|
||||
|
|
|
@ -10,6 +10,8 @@ require_once __DIR__ . '/external/google-api-php-client/contrib/Google_CalendarS
|
|||
* This class implements all the core synchronization between the Google Calendar
|
||||
* and the Easy!Appointments system. Do not place any model handling inside this
|
||||
* library.
|
||||
*
|
||||
* @package Libraries
|
||||
*/
|
||||
class Google_Sync {
|
||||
private $CI;
|
||||
|
|
|
@ -8,6 +8,8 @@ require_once dirname(__FILE__) . '/external/class.phpmailer.php';
|
|||
*
|
||||
* Custom system settings for the notification section are loaded
|
||||
* during the execution of each class methods.
|
||||
*
|
||||
* @package Libraries
|
||||
*/
|
||||
class Notifications {
|
||||
private $ci;
|
||||
|
|
Loading…
Reference in a new issue