Vous ĂȘtes ici : Partie III > Chapitre 2 > lib > OCFram
<?php namespace OCFram; abstract class ApplicationComponent { protected $app; public function __construct(Application $app) { $this->app = $app; } public function app() { return $this->app; } }