-
-
Notifications
You must be signed in to change notification settings - Fork 28
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix tests, restore Alpine tests, fix PHP 8.1+ deprecation warning #39
Conversation
Hi @mlocati, I was checking out this very welcome PR with the code below that segfaults on PHP 8.2 on Ubuntu and MacOS. Was this a 8.2 compatibility fault that this PR will address or is it a different area of work? <?php
$matrix = Tensor\Matrix::ones(2,2);
$matrix->inverse(); Thankyou! |
Nope, I just fixed a couple of deprecation warnings about classes extending ArrayAccess / IteratorAggregate |
Thank you @mlocati! |
Fix #35