PHP 인터페이스 ApplicationInterface

app/routing.php uses these methods to kickstart and send the output of the app to the browser.
파일 보기 프로젝트 열기: forkcms/forkcms 0 사용 예제들

공개 메소드들

메소드 설명
display ( ) : Symfony\Component\HttpFoundation\Response Sends the output of the app to our browser, in the form of a Response object.
initialize ( ) This method exists because the kernel/service container needs to be set before the page's functionality gets loaded. Any functionality of the app should be initialized afterwards.

메소드 상세

display() 공개 메소드

Sends the output of the app to our browser, in the form of a Response object.
public display ( ) : Symfony\Component\HttpFoundation\Response
리턴 Symfony\Component\HttpFoundation\Response

initialize() 공개 메소드

This method exists because the kernel/service container needs to be set before the page's functionality gets loaded. Any functionality of the app should be initialized afterwards.
public initialize ( )