PHP 클래스 Cartalyst\Sentinel\Cookies\IlluminateCookie

상속: implements Cartalyst\Sentinel\Cookies\CookieInterface
파일 보기 프로젝트 열기: cartalyst/sentinel 1 사용 예제들

보호된 프로퍼티들

프로퍼티 타입 설명
$jar Illuminate\Cookie\CookieJar The cookie object.
$key string The cookie key.
$request Illuminate\Http\Request The current request.

공개 메소드들

메소드 설명
__construct ( Illuminate\Http\Request $request, Illuminate\Cookie\CookieJar $jar, string $key = null ) : void Create a new Illuminate cookie driver.
forget ( ) {@inheritDoc}
get ( ) {@inheritDoc}
put ( $value ) {@inheritDoc}

메소드 상세

__construct() 공개 메소드

Create a new Illuminate cookie driver.
public __construct ( Illuminate\Http\Request $request, Illuminate\Cookie\CookieJar $jar, string $key = null ) : void
$request Illuminate\Http\Request
$jar Illuminate\Cookie\CookieJar
$key string
리턴 void

forget() 공개 메소드

{@inheritDoc}
public forget ( )

get() 공개 메소드

{@inheritDoc}
public get ( )

put() 공개 메소드

{@inheritDoc}
public put ( $value )

프로퍼티 상세

$jar 보호되어 있는 프로퍼티

The cookie object.
protected CookieJar,Illuminate\Cookie $jar
리턴 Illuminate\Cookie\CookieJar

$key 보호되어 있는 프로퍼티

The cookie key.
protected string $key
리턴 string

$request 보호되어 있는 프로퍼티

The current request.
protected Request,Illuminate\Http $request
리턴 Illuminate\Http\Request