├── .travis.yml ├── LICENSE ├── README.md ├── core └── MY_Controller.php ├── phpunit.xml └── tests ├── MY_Controller_tests.php └── support ├── test_controllers.php └── test_helper.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/README.md -------------------------------------------------------------------------------- /core/MY_Controller.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/core/MY_Controller.php -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/phpunit.xml -------------------------------------------------------------------------------- /tests/MY_Controller_tests.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/tests/MY_Controller_tests.php -------------------------------------------------------------------------------- /tests/support/test_controllers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/tests/support/test_controllers.php -------------------------------------------------------------------------------- /tests/support/test_helper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamierumbelow/codeigniter-base-controller/HEAD/tests/support/test_helper.php --------------------------------------------------------------------------------