27 lines
467 B
PHP
27 lines
467 B
PHP
<?php namespace ZN\Security;
|
|
/**
|
|
* ZN PHP Web Framework
|
|
*
|
|
* "Simplicity is the ultimate sophistication." ~ Da Vinci
|
|
*
|
|
* @package ZN
|
|
* @license MIT [http://opensource.org/licenses/MIT]
|
|
* @author Ozan UYKUN [ozan@znframework.com]
|
|
*/
|
|
|
|
use ZN\Ability\Serialization;
|
|
|
|
#[\AllowDynamicProperties]
|
|
|
|
class Secure
|
|
{
|
|
use Serialization;
|
|
|
|
const serialization =
|
|
[
|
|
'class' => 'Guard',
|
|
'start' => 'data',
|
|
'end' => 'get'
|
|
];
|
|
}
|