Short array syntax [] in Page and PageController

This commit is contained in:
JorisDebonnet 2017-11-06 01:46:05 +01:00 committed by Joris Debonnet
parent 185a491fc0
commit e3ad4e71c8
2 changed files with 5 additions and 9 deletions

View File

@ -4,9 +4,7 @@ use SilverStripe\CMS\Model\SiteTree;
class Page extends SiteTree
{
private static $db = array(
);
private static $db = [];
private static $has_one = array(
);
private static $has_one = [];
}

View File

@ -9,19 +9,17 @@ class PageController extends ContentController
* permissions or conditions required to allow the user to access it.
*
* <code>
* array (
* [
* 'action', // anyone can access this action
* 'action' => true, // same as above
* 'action' => 'ADMIN', // you must have ADMIN permissions to access this action
* 'action' => '->checkAction' // you can only access this action if $this->checkAction() returns true
* );
* ];
* </code>
*
* @var array
*/
private static $allowed_actions = array(
);
private static $allowed_actions = [];
protected function init()
{