PHP Class App\Managers\SettingManager

Show file Open project: sroutier/laravel-5.1-enterprise-starter-kit

Public Properties

Property Type Description
$app Illuminate\Foundation\Application Laravel application

Public Methods

Method Description
__construct ( Illuminate\Foundation\Application $app ) Create a new instance.
all ( ) : mixed
clear ( )
forget ( null $key = null ) : mixed
get ( $key, null $defaultVal = null ) : App\Libraries\misc | boolean | float | integer | mixed | null
has ( $key ) : mixed
isEncrypted ( $key, null $val = null ) : boolean
load ( $envName )
save ( ) : mixed
set ( $key, null $value = null, $encrypt = false ) : mixed

Method Details

__construct() public method

Create a new instance.
public __construct ( Illuminate\Foundation\Application $app )
$app Illuminate\Foundation\Application

all() public method

public all ( ) : mixed
return mixed

clear() public method

public clear ( )

forget() public method

public forget ( null $key = null ) : mixed
$key null
return mixed

get() public method

public get ( $key, null $defaultVal = null ) : App\Libraries\misc | boolean | float | integer | mixed | null
$key
$defaultVal null
return App\Libraries\misc | boolean | float | integer | mixed | null

has() public method

public has ( $key ) : mixed
$key
return mixed

isEncrypted() public method

public isEncrypted ( $key, null $val = null ) : boolean
$key
$val null
return boolean

load() public method

public load ( $envName )

save() public method

public save ( ) : mixed
return mixed

set() public method

public set ( $key, null $value = null, $encrypt = false ) : mixed
$key
$value null
return mixed

Property Details

$app public property

Laravel application
public Application,Illuminate\Foundation $app
return Illuminate\Foundation\Application