Serghei Iakovlev

Results 125 issues of Serghei Iakovlev

New Feature Request

Hello, I would like to format footer output using configured width as well as to take into account terminal geometry. Consider the following example: ``` $ ./app subcommand --help SYNOPSIS...

enhancement

Is there any simple way to get formatted help output for options like this: ``` Options: --option1 TEXT Some description for option1 -h, --help Print this help message and quit...

docs

#### Zephir Code ```zep namespace Bug; class ClassPropertyConcat { private store = ""; public function add(string value) -> void { let this->store .= value; } public function add2(string value) ->...

bug

I think this sould be documented here: https://docs.zephir-lang.com/0.12/en/operators#empty Because there is absolutely nothing in the "empty" documentation that suggest this different behaviour. _Originally posted by @colorvamp in https://github.com/phalcon/zephir/issues/917#issuecomment-586743644_

docs

### Failed to compile ```zep char ch = 'A'; printf("The value of '%s' is %c", ch, (char)ch); ``` ``` In file included from /home/klay/.phpenv/versions/7.2.20-zts-debug/include/php/Zend/zend.h:29, from /home/klay/.phpenv/versions/7.2.20-zts-debug/include/php/main/php.h:35, from /home/klay/work/zephir/issues/ext/bug/chars.zep.c:6: /home/klay/work/zephir/issues/ext/bug/chars.zep.c: In...

bug

Error: "Reached end of the method without returning a valid type specified in the return-type hints" ```zep public function testSwitch() -> int { var a; let a = 1; switch...

bug

_From @ger-hard on February 22, 2018 16:13_ ### Expected and Actual Behavior When the class B in Zephir (which inherits from an abstract class A)vhas to implement at least one...

bug

Without isProperty shortcut we usually have code like: ``` zephir namespace App; class MyClass { protected fallback = true { set }; protected cancelable = true; public function isCancelable() {...

nfr