AnrDaemon
AnrDaemon
```php v::phone() ->assert("+7 (999) 999-99-99") ; ``` > "+7 (999) 999-99-99" must be a valid telephone number It IS a valid phone number. Dashes are on par with spaces -...
```php use Respect\Validation\Validator as v; foreach([ "+7 (999) 999-99-99", "+7(999)999-99-99", "+7(999)999-9999", ] as $phone) { print "Valid phone number {$phone} validation " . ( v::phone()->validate($phone) ? "passed" : "failed") ....
Just add a "terminal" SSH connection inside your workspace ``` "terminal.integrated.profiles.windows": { "SSH@dev": { "args": [ "-A", "-R", "9003:localhost:9003", "[email protected]" ], "overrideName": true, "path": "C:\\Programs\\Cygwin\\bin\\ssh.exe", "color": "terminal.ansiCyan" } }, ```...
Please see bmewburn/vscode-intelephense#1865 and parent issue microsoft/vscode#112231
Sorry, if I was needlessly abrupt. Yes, some of the code was improved since then, but some issues remain. UNC one is not necessarily a php-debug issue (though my observation...
How to create the logs? That's probably the hardest part for me :) The rest is easily reproducible (at least, in my env.)
[debug-console.log](https://github.com/xdebug/vscode-php-debug/files/7025650/debug-console.log) [launch.json.txt](https://github.com/xdebug/vscode-php-debug/files/7025651/launch.json.txt) [php-xdebug.log](https://github.com/xdebug/vscode-php-debug/files/7025652/php-xdebug.log)
> why does VSCode see one file in upper case UNC host and second in lowercase UNC host? Because it's a bug in VS Code. It doesn't do path normalization...
WSL paths are a bigger headache than regular UNC paths. BTW, you don't need a linux host to test, you can loop back to yourself on the Windows host. Probably...
> "should the stop button close all sessions or just stop listening?" Can't it be both? I actually suggest two buttons: - Stop (the "square", terminate current thread) - Close...