You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
At the moment the LaravelJsonApi\Core\Support\Arr helper forwards static calls through to the Illuminate\Support\Arr class. This does not work for methods, e.g. forget, where the array is passed by reference. To fix, we will need to implement these methods on our Arr class and mark the value as passed by reference: then forward on to the correct method in the Illuminate class.
The text was updated successfully, but these errors were encountered:
At the moment the
LaravelJsonApi\Core\Support\Arr
helper forwards static calls through to theIlluminate\Support\Arr
class. This does not work for methods, e.g.forget
, where the array is passed by reference. To fix, we will need to implement these methods on ourArr
class and mark the value as passed by reference: then forward on to the correct method in the Illuminate class.The text was updated successfully, but these errors were encountered: