David Fernández

Results 18 issues of David Fernández

When we use a full namespace in "implements", this ``` Excel::raw(new class() implements \Excel\Concerns\FromArray { public function __construct() {} }); ``` becomes ``` Excel::raw(new class() implements \Excel\Concerns\FromArray { public function...

``` $response = Http::retry(3, 100, throw: false)->post(/* ... */); ``` is formatted as ``` $response = Http::retry(3, 100, throw : false)->post(/* ... */); ```

### Platform macOS ### Operating system version macOs Sonoma Versión 14.5 (23F79) ### System architecture Intel (x86) ### Herd Version 1.9.1 Build 31 ### PHP Version Not applicable ### Bug...

fixed-in-next-release
macOS

``` $j->first(fn($a) => $a === 1) ?? 1; ``` becomes ``` $j->first(fn($a) => $a === 1); ?? 1; ``` whereas ``` $j->first(fn($a) => $a === 1) ?? 1; ``` it's...

``` $salted = ''; $dx = ''; while (strlen($salted) < 48) { $dx = md5($dx . $passphrase . $salt, true); $salted .= $dx; } $key = substr($salted, 0, 32); $iv...

Autosemicolon is one of the most important rules in the package. It really saves time while coding. However, there are some cases that are not yet covered, such as those...

Depending on the "use" of the class the alignment behaves different ```