Added @package tag to libraries.

This commit is contained in:
Alex Tselegidis 2015-07-08 00:40:04 +02:00
parent 2ba088a971
commit d1a664c461
10 changed files with 49 additions and 0 deletions

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;

View File

@ -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;