From 3d3f36edeed2c8c0d30d1afde77cf4d5646c4980 Mon Sep 17 00:00:00 2001 From: Markus Fischer Date: Sun, 18 Sep 2016 16:39:31 +0200 Subject: [PATCH] tests: make afterApplicationCreated() callback registration public --- src/Illuminate/Foundation/Testing/TestCase.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Illuminate/Foundation/Testing/TestCase.php b/src/Illuminate/Foundation/Testing/TestCase.php index 979c2f38d542..26e2540e9b8a 100755 --- a/src/Illuminate/Foundation/Testing/TestCase.php +++ b/src/Illuminate/Foundation/Testing/TestCase.php @@ -154,7 +154,7 @@ protected function tearDown() * @param callable $callback * @return void */ - protected function afterApplicationCreated(callable $callback) + public function afterApplicationCreated(callable $callback) { $this->afterApplicationCreatedCallbacks[] = $callback;