Releases: ReeceM/mocker
Releases · ReeceM/mocker
Laravel 10
Full Changelog: v1.2.0...v1.2.1
v1.2.0 - L9
[1.2.0] - 08.02.22
Added
- Add support for Laravel 9
v1.1.5 - wondering around
Changes
- Add support for Laravel 8 #16
v1.1.4 - tree stumps
1.1.4
Fixed
-
Variables are no longer polluted between variable calls. #6
-
When calling an object that has an array assigned it will return whole the array as a string, see for more #5
-
See pull request #15
Note
There is a slight bug introduced with this version as to the fact that the arrays returned after the first step are arrays and not instances of Mocked. Cannot assign values after assigning the first time.
v1.1.3 laravel 7 support
Feature
Add support for laravel 7.0
See merge #13, @blakehooks
v1.1.2
v1.1.1
v1.1.0
This release adds a more readable output to the __toString() magic method, this is from #1 feature request.
This came in by means of PR #2
Features
- Readable output e.g.
{{ $mocked->value->name }}
==mocked->value->name
- If the value is set in the class its from it would be
mocked->value->name => ["value set"]
- If the value is set in the class its from it would be
- The values set persists during the calls even if it traverses back and forth in the calling of magic
__get()
Misc
- Testing added