Anton Kotik
Anton Kotik
There is no way to modify json_encode() [encode options](https://github.com/zendframework/zend-json/blob/master/src/Json.php#L295-L299) except JSON_PRETTY_PRINT. For example we can't enable JSON_UNESCAPED_UNICODE or disable default options. Extending the base class Zend\Json\Json as workaround creates another...
The previously defined error and exception handlers (if any) will be lost: https://github.com/zendframework/zend-log/blob/master/src/Logger.php#L562 https://github.com/zendframework/zend-log/blob/master/src/Logger.php#L611 ``` php error_reporting(E_ALL); set_error_handler(function () { // We will never get here :-( echo 'Previous error...
Repositories created by `Doctrine\ORM\Decorator\EntityManagerDecorator` use `EntityManager` instead of `EntityManagerDecorator`: ``` php use Doctrine\ORM\EntityManager; use Doctrine\ORM\Decorator\EntityManagerDecorator; $entityManager = EntityManager::create($dbParams, $config); $entityManager->getRepository('entity')->getEntityManager(); // returns: Doctrine\ORM\EntityManager class TestDecorator extends EntityManagerDecorator { // ......
1. Fixed broken links and added some missed closing parentheses 2. Normalized blank line spacing. There were different amounts of blank lines between paragraphs / headings. Brought them to a...