Samih Soylu

Results 2 issues of Samih Soylu

## Steps to reproduce: ```php public function getPaymentsFromMonetaryAccount(int $monetaryAccountId, int $count = 50): array $pagination = new Pagination(); $pagination->setCount($count); return Payment::listing( $monetaryAccountId, [], $pagination->getUrlParamsCountOnly() )->getValue(); } ``` ## What should...

Imagine that you want to create a controller in different directory, and entities in another. How could you achieve this through the config? This is sort of what I imagined:...