silverstripe-framework/tests/php/Control/ControllerTest/UnsecuredController.php
2016-12-19 16:08:19 +13:00

24 lines
414 B
PHP

<?php
namespace SilverStripe\Control\Tests\ControllerTest;
use SilverStripe\Control\Controller;
use SilverStripe\Dev\TestOnly;
class UnsecuredController extends Controller implements TestOnly
{
// Not defined, allow access to all
// static $allowed_actions = array();
// Granted for all
public function method1()
{
}
// Granted for all
public function method2()
{
}
}