Explorar el Código

[Console] privatized protected variables, cuz they now have getters/setters

ever.zet hace 14 años
padre
commit
3e7fa82f34
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      src/Symfony/Component/Console/Output/Output.php

+ 2 - 2
src/Symfony/Component/Console/Output/Output.php

@@ -35,8 +35,8 @@ abstract class Output implements OutputInterface
     const OUTPUT_RAW = 1;
     const OUTPUT_PLAIN = 2;
 
-    protected $verbosity;
-    protected $formatter;
+    private $verbosity;
+    private $formatter;
 
     /**
      * Constructor.