mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2024-11-15 11:28:25 +00:00
1ede742d92
Mostly CS, doc blocks and unused variables.
15 lines
188 B
PHP
15 lines
188 B
PHP
<?php
|
|
App::uses('AppController', 'Controller');
|
|
/**
|
|
* Articles Controller
|
|
*/
|
|
class ArticlesController extends AppController {
|
|
|
|
/**
|
|
* Scaffold
|
|
*
|
|
* @var mixed
|
|
*/
|
|
public $scaffold;
|
|
|
|
}
|