Cody Mann

Results 11 issues of Cody Mann

Laravel facades expect that the facade accessor is "provided" by one of the service providers. Tests have been added to ensure that the service provider will always provide the correct...

- Laravel/Lumen version: 8.56.0 - Horizon version: 5.7.10 - RabbitMQ version: 3.8.2 - Package version: 11.3.0 `rabbitmq:consume` executes jobs successfully but does not acknowledge them. **Steps To Reproduce** I've setup...

PHP7.4 now triggers a notice (which is commonly converted into an `ErrorException`) when accessing non-arrayable types (int, float, etc). This causes an exception when trying to fetch shipping rates on...

This can be easily replicated in by running the following test and examining the output in the `CurlClient`: https://github.com/goshippo/shippo-php-client/blob/e4b577a0f45675db5df54e14877a2a9f463dfcad/test/ParcelTest.php#L48-L52 The expected output format according to the documentation is: ```json {...

Fixes #45, #46, #47 Added namespaces and updated various places that instantiate classes using strings to use the new namespace.

help wanted

Calling `\Shippo\Shippo_Address::create($params);` throws: ``` FatalThrowableError (E_ERROR) Class 'Shippo_Address' not found ``` in [Object.php](https://github.com/goshippo/shippo-php-client/blob/master/lib/Shippo/Object.php#). The problem is that `$class` should contain the fully qualified namespace as explained [here](http://php.net/manual/en/language.namespaces.faq.php#119983).

### Versions: - ide-helper Version: 2.13.0 - Laravel Version: 10.15.0 - PHP Version: 8.1 ### Description: When resolving a class from the container that would trigger a deprecation error (E_DEPRECATED),...

bug

**Describe the bug** Occasionally when our application throws an exception, the expected error is replaced by a caught exception that is thrown in the error handler. A basic example of...

bug
agent-php
triaged
priority: medium

Network throughput is extremely poor between the host and container. It appears to be capped at about 1400kb/s in all of my tests. I've linked a repository that reliably reproduces...

Using session, let's say we have: ``` $A = ["id" => "example", "quantity" => 5, ...]; // and $B = ["id" => "example", "quantity" => 11, ...]; ``` If we...