Stéphane

Results 15 issues of Stéphane

``` zephir namespace ZephirBug; class bug1 { public function whatsisMyvar(myvar) { if is_string(myvar) { return "is a var"; } elseif is_string(myvar[0]) { return "is an array and the first element...

bug
rfc

Hi, I propose to introduce zept (Zephir Test) like php do (phpt). The syntax would be very similar to phpt, an example with a zept for issue#1097 ``` zept --TEST--...

nfr

Hello, The tests suite never end with `./vendor/bin/roave-no-leaks`, I have to stop it by hand, so I don't have any results. Tested with phpunit 8.0.*, phpunit 8.1.* phpunit 8.2.*, phpunit...

bug
help wanted

Hi, First of all thanks your work. I use this package for a longtime along with backup-manager/backup-manager but it stop working since 7 october. I have try to find a...

inspired by https://github.com/hanabi1224/Programming-Language-Benchmarks/blob/main/bench/algorithm/binarytrees/1.js now it run under 400ms

Hello, This issue is just to open a discussion. I would like to write my paginated query like this : ```php class MyController { /** * @return Porpaginas\Result */ #[Query]...

Hello, With this PR this code will preserve MyCustomInputType ```php $factory = new SchemaFactory(); $factory->setSchemaConfig(SchemaConfig::create([ 'types' => [ MyCustomInputType::getInstance() ] ])); $schema = $factory->createSchema(); ```