Anwar

Results 27 comments of Anwar

I think a lot of APIs rely on the 405 - method not allowed status code as it can be frequent developpers use the wrong protocol. For a classic HTML...

I created an URL reconstructor, and then I saw this issue with the example code. My version is also checking that the regular expression is matching the named parameter, and...

I tryied on JSFiddle, this work for a small amount of data : https://jsfiddle.net/cLp25uww/2/, but with a large amount of data : https://jsfiddle.net/cLp25uww/1/ DataTable throw an error `cannot set property...

I just used this wonderful package yesterday, and I did not saw this news at time... My truely deep condoleances to one of our peers in this beautiful development world....

Hi @75lb , seems to yep ![jsdoc-example-see-links](https://user-images.githubusercontent.com/15908747/40085021-63c3f0d4-5899-11e8-9658-633621342b86.png) The code that originated this doc: ```javascript /** * @see {@link foo} for further information. * @see {@link http://github.com|GitHub} */ function test() {...

I confirm the bug is still present as of phpstan 1.0.* A temporary solution is to use an ignore comment to silence the error: ```php /** @phpstan-ignore-next-line */ $this->partialMock(User::class) ->shouldReceive('plan')...

Yep I confirm this is reproducible (tested again now), you can check on your side by cloning https://github.com/khalyomede/php-typo (command I used below to reproduce the issue, needs Docker Compose installed)...

Thank you so much for the time spent on my issue! I just ran this command, seems like composer url is configured correctly: ```bash khalyomede@ubuntu:~/programming/php-typo$ docker-compose run composer config repos...

Good day @szepeviktor ! I updated my code as you suggested, but I get same thing, the error just notices I now use a typed int property as a second...

Unfortunately, it still complains, and notices the second parameter is a mixed ```php use App\Models\User; use Illuminate\Pagination\LengthAwarePaginator; use Tests\TestCase; final class UserTest extends TestCase { public function testFailing(): void {...