@@ -70,7 +70,7 @@ public function test_null_values_are_memoized_when_retrieving_single_value()
70
70
$ this ->assertNull ($ memoized );
71
71
}
72
72
73
- public function test_it_can_memoize_when_retrieving_mulitple_values ()
73
+ public function test_it_can_memoize_when_retrieving_multiple_values ()
74
74
{
75
75
Cache::put ('name.0 ' , 'Tim ' , 60 );
76
76
Cache::put ('name.1 ' , 'Taylor ' , 60 );
@@ -116,7 +116,7 @@ public function test_it_uses_correct_keys_for_getMultiple()
116
116
$ this ->assertSame ($ cacheValue , $ memoValue );
117
117
}
118
118
119
- public function test_null_values_are_memoized_when_retrieving_mulitple_values ()
119
+ public function test_null_values_are_memoized_when_retrieving_multiple_values ()
120
120
{
121
121
$ live = Cache::getMultiple (['name.0 ' , 'name.1 ' ]);
122
122
$ memoized = Cache::memo ()->getMultiple (['name.0 ' , 'name.1 ' ]);
@@ -132,7 +132,7 @@ public function test_null_values_are_memoized_when_retrieving_mulitple_values()
132
132
$ this ->assertSame ($ memoized , ['name.0 ' => null , 'name.1 ' => null ]);
133
133
}
134
134
135
- public function test_it_can_retrieve_already_memoized_and_not_yet_memoized_values_when_retrieving_mulitple_values ()
135
+ public function test_it_can_retrieve_already_memoized_and_not_yet_memoized_values_when_retrieving_multiple_values ()
136
136
{
137
137
Cache::put ('name.0 ' , 'Tim ' , 60 );
138
138
Cache::put ('name.1 ' , 'Taylor ' , 60 );
0 commit comments