Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i believe it must be method call here :)
tested in my app like this: ``` /** @test */ public function get_all() { // given $user = $this->user; // action $user->addMeta('key', 'value'); $user->addMeta('other', 'another_value'); // assert $user = $user->fresh(); $this->assertEquals( ['key' => 'value', 'other' => 'another_value'], $user->getAllMeta()->toArray() ); } ```
- Loading branch information