new pisilinux web sites
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
<?php namespace ZN\Cryptography\Encode;
|
||||
/**
|
||||
* 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\Config;
|
||||
|
||||
class EncodeExtends
|
||||
{
|
||||
/**
|
||||
* Keeps config
|
||||
*
|
||||
* @var array
|
||||
*/
|
||||
protected static $config;
|
||||
|
||||
/**
|
||||
* Magic constructor
|
||||
*
|
||||
* @param void
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
self::$config = Config::default('ZN\Cryptography\CryptographyDefaultConfiguration')
|
||||
::get('Cryptography');
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user