mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 19:38:26 +00:00
703d9881e9
Writing assertContains() or assertRegExp for generated code is a pain and making the test cover most part of it is very difficult. Things like: ``` } else { } ``` Are very easy to happen (which was the case) and was not being covered by the test.
18 lines
289 B
PHP
18 lines
289 B
PHP
<?php
|
|
App::uses('AppController', 'Controller');
|
|
/**
|
|
* Articles Controller
|
|
*
|
|
* @property Article $Article
|
|
* @property PaginatorComponent $Paginator
|
|
*/
|
|
class ArticlesController extends AppController {
|
|
|
|
/**
|
|
* Components
|
|
*
|
|
* @var array
|
|
*/
|
|
public $components = array('Paginator');
|
|
|
|
}
|