Project

General

Profile

Epic #84280

Updated by Jan Helke about 6 years ago

In order to archive a PHP E_NOTICE free core, we need to fix a lot of unit test. 

 Currently the notices were suppressed in the unit tests by  

 <pre><code class="php"> 
     /** 
      * Subject is not notice free, disable E_NOTICES 
      */ 
     protected static $suppressNotices = true; 
 </code></pre> 

 After removing this code, the correspondend unit tests will fail if the cause an E_NOTICE. 

 Your mission, if you choose to accept it: Find the reasons for this notices and clean that up. Can be caused by the tests, by the test subjects or by dependencies. 

 Find yourself more issues by greping for the above string.

Back