Handleiding:IContextSource.php

This page is a translated version of the page Manual:IContextSource.php and the translation is 100% complete.

Het bestand IContextSource.php bevat de IContextSource interface voor objecten die een context kunnen geven aan een request.

Example

You may want to access IContextSource if you are writing an API which uses type hinting in the arguments or makes instanceof checks:

if ( $arg instanceof IContextSource ) {
  // Behandel $arg als een context object
}
function foo( IContextSource $context ) {
  // Gebruik $context als de context van het verzoek
}

Implemented by