[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/vendor/symfony/http-foundation/ -> RequestStack.php (summary)

(no description)

File Size: 103 lines (2 kb)
Included or required:0 times
Referenced: 0 times
Includes or requires: 0 files

Defines 1 class

RequestStack:: (5 methods):
  push()
  pop()
  getCurrentRequest()
  getMasterRequest()
  getParentRequest()


Class: RequestStack  - X-Ref

Request stack that controls the lifecycle of requests.

push(Request $request)   X-Ref
Pushes a Request on the stack.

This method should generally not be called directly as the stack
management should be taken care of by the application itself.

pop()   X-Ref
Pops the current request from the stack.

This operation lets the current request go out of scope.

This method should generally not be called directly as the stack
management should be taken care of by the application itself.

return: Request|null

getCurrentRequest()   X-Ref

return: Request|null

getMasterRequest()   X-Ref
Gets the master Request.

Be warned that making your code aware of the master request
might make it un-compatible with other features of your framework
like ESI support.

return: Request|null

getParentRequest()   X-Ref
Returns the parent request of the current.

Be warned that making your code aware of the parent request
might make it un-compatible with other features of your framework
like ESI support.

If current Request is the master request, it returns null.

return: Request|null



Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1