We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea73bae commit c6cf381Copy full SHA for c6cf381
src/Illuminate/Testing/PendingCommand.php
@@ -287,7 +287,7 @@ private function createABufferedOutputMock()
287
->shouldAllowMockingProtectedMethods()
288
->shouldIgnoreMissing();
289
290
- $this->applyOutputTableExpectations($mock);
+ $this->applyTableOutputExpectations($mock);
291
292
foreach ($this->test->expectedOutput as $i => $output) {
293
$mock->shouldReceive('doWrite')
@@ -308,7 +308,7 @@ private function createABufferedOutputMock()
308
* @param \Mockery\MockInterface $mock
309
* @return void
310
*/
311
- private function applyOutputTableExpectations($mock)
+ private function applyTableOutputExpectations($mock)
312
{
313
foreach ($this->test->expectedTables as $consoleTable) {
314
$table = (new Table($output = new BufferedOutput))
0 commit comments