Gert-dev
Gert-dev
**Describe the bug** Starting the bot on latest master, and immediately trying to download a video that is too long, causes a crash: ``` Traceback (most recent call last): File...
**Is your feature request related to a problem? Please describe.** YouTube videos can have audio of varying volumes, as it depends on the person that mixed the audio into the...
Using the decaffeinate project the initial code has been converted to JavaScript (see #375 or 293eb2020bfe781e96235167c74b20ed6dc41295). This is just the first step however, as there are other things to do:...
If you extract: ``` php $test = $test2->foo(); ``` ... `$test2` will be added as parameter to the extracted method. However, if you extract: ``` php $test = $test->foo(); ```...
Hello everyone I've been managing both Serenata and the Atom language client for quite a few years now, but, as several of you have probably already noticed, have not been...
We should refrain from generating the `get` prefix for boolean properties: ``` php public function getFoo(); // Normal property. public function isActive(); // Instead of getIsActive. public function hasSomething(); //...
I find myself almost always checking all or most properties anyways. It seems better to reverse the default.
Currently, when the platform requirements are not met, the initial "environment test" succeeds, but the installation then fails. We can do one better by running `composer check` during the environment...
A neat feature would be to be able to collapse and wrap method or function calls, for example: ``` php $this->test(1, 2, 3); // "Wrap parameters over several lines" $this->test(...
Creating PHP files by entering the namespace manually becomes cumbersome quickly. We can automatically fill out the namespace based on the folder hierarchy, although where it starts depends on the...