Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Symfony2 似乎将所有通知/警告都封装到 ErrorExceptions 中。在开发过程中这是一个很好的行为,但这会导致单元测试出现一些问题。
我用 Jenkins 启动单元测试,有些课程会发出通知。这些通知被转换为异常......这会使单元测试崩溃。
我已经尝试使用 phpunit 特定参数,但它没有改变(convertWarningsToExceptions = false等)。
convertWarningsToExceptions = false
那么,如何更改此默认行为?