Commit 08f08ea6 authored by Fabien Potencier's avatar Fabien Potencier

merged branch gigablah/property-visibility (PR #665)

This PR was merged into the master branch.

Discussion
----------

Change visibility of `providers` and `booted` to protected

This changes `$providers` and `$booted` in `Application` to protected, which makes it easier to extend.

Commits
-------

e6902d10 Change visibility of `providers` and `booted` to protected
parents a5cb55ce e6902d10
...@@ -48,8 +48,8 @@ class Application extends \Pimple implements HttpKernelInterface, TerminableInte ...@@ -48,8 +48,8 @@ class Application extends \Pimple implements HttpKernelInterface, TerminableInte
const EARLY_EVENT = 512; const EARLY_EVENT = 512;
const LATE_EVENT = -512; const LATE_EVENT = -512;
private $providers = array(); protected $providers = array();
private $booted = false; protected $booted = false;
/** /**
* Instantiate a new Application. * Instantiate a new Application.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment