vadym
vadym
It seems like [FixtureGenerator::generateFixtureItemStub](https://github.com/Webonaute/DoctrineFixturesGeneratorBundle/blob/468fb47db2af12ac4b84c8a8142c7a1af69c24bc/Tool/FixtureGenerator.php#L322-L410) doesn't support [Doctrine Custom Mapping Types](http://docs.doctrine-project.org/projects/doctrine-orm/en/latest/cookbook/custom-mapping-types.html) which returns object as a PHP value from `convertToPHPValue` method rather than `\DateTime` object. Following code will fail to generate...
https://github.com/atk4/atk4/blob/master/lib/Form/Field.php#L421 Toollkit never never use this method. How to change template for inherited field classes?
I think in this case Logger must send in json or xml format https://github.com/atk4/atk4/blob/4.3/lib/Logger.php#L310
This code doesn't work. ``` $this->addHook('beforeInsert',function($m) { $m->set('bla') = '123'; $m['bla'] = '123'; }); ```
$this->name of Virtual Page contains application name two times for some reason. ``` $vp = $this->add('VirtualPage'); $this->js('click')->_selector('#login-link') ->univ()->frameURL( 'Login', $vp->getURL() ); var_dump($vp->name); // app_name_some_view_virtual_page set(function($vp) { var_dump($vp->name); // app_name_app_name_some_view_virtual_page add('Form_Login');...