Piotr Olaszewski

Results 45 issues of Piotr Olaszewski
trafficstars

Following code: ``` $json = '{"int_overflow":9223372036854775807}'; $decoder = new JsonDecoder(); $decode = $decoder->decode($json); ``` Throws exception: `json_decode(): integer overflow detected`. This should be translate from a big int to the...

Annotations should be cached for performance issue. https://www.doctrine-project.org/projects/doctrine-annotations/en/1.6/annotations.html#setup-and-configuration

feature request

I think very good feature will be possibility to generate all migration queries and save for example in file, for example: `php rucus.php db:get_queries > file.sql` Why? I my case...

It would be nice to have a possibility to define a custom task dir in database.inc.php (just like migrations dir). Currently, if I use composer I cannot define custom tasks.

feature-request

There is missing property `state_reason`, should be added with appropriate enum.

enhancement
good first issue

I think config should be represent as singleton pattern. Now is passed to all objects but should be one instance of object, with global access.

question

We should add support for: ``` public function test(int $id): bool { //... } ```

Add redirect in routes. Proposition: ``` php Route::get('/', Redirect::to('/users')); Route::get('/', Redirect::toAbsolute('http://ouzoframework.org')); ```

feature