Michał Turek

Results 19 issues of Michał Turek

Every time you push an upgrade for this addon: 1) feedly notifier gets logged out and i need to login to feedly again 2) all of my filters are reset...

I would like to generate really big csv files with large amounts of rows. ````php public function export() { $this->viewBuilder()->className('CsvView.Csv'); $milionsOfRows = $this->SomeBigTable->find()->enableBufferedResults(false)->all(); $this->set('data',$milionsOfRows); $this->set('_serialize','data'); } ```` Currently this plugin...

enhancement

Example code: ```php /** @var \ExampleClass $variableName */ $variableName = $this->someMethod(); ``` What i get after using `use assert` inspection: ```php assert($variableName instanceof \ExampleClass); $variableName = $this->someMethod(); ``` What i...

| Subject | Details | | :------------- | :---------------------------------------------------------------------------- | | Plugin | Php Inspections (EA Extended)| | Language level | PHP 8.1 | Example code: -- ```php $source_array =...

### How to reconstruct issue: 1) bake new `MainWebsite` plugin 2) create `plugins/MainWebsite/src/Controller/PagesController.php` with following contents ```php

defect

### Description I don't know is this ticket should be classified as bug or as feature request (kinda both) Currently, `EntityRoute` simply does not work with `\BackedEnum` fields as expected....

enhancement
routing
pinned

Example use case: ```php $this->Crud->action()->setConfig('primaryKey', 'uuid'); ``` this change makes `FriendsOfCake/crud` plugin compatible with `dereuromark/cakephp-expose`

Example use case: ```php $this->Crud->action()->setConfig('primaryKey', 'uuid'); ``` this change makes `FriendsOfCake/crud` plugin compatible with `dereuromark/cakephp-expose`

https://github.com/FriendsOfCake/crud/blob/master/src/Controller/Component/CrudComponent.php#L627-L638 Should be compatible with: https://github.com/FriendsOfCake/crud/blob/master/src/Core/ProxyTrait.php#L128-L142

How to reproduce: 1) For example add following line at the end of your `AppController::initialize()` ```php debug($this->Crud->isActionMapped()); ``` 2) Bake any controller (confirm that you want to override controller if...