diff --git a/framework/core/src/Extend/Event.php b/framework/core/src/Extend/Event.php index be23b27f1..cade05483 100644 --- a/framework/core/src/Extend/Event.php +++ b/framework/core/src/Extend/Event.php @@ -42,7 +42,7 @@ class Event implements ExtenderInterface * Event subscribers are classes that may subscribe to multiple events from within the subscriber class itself, * allowing you to define several event handlers within a single class. * - * @see https://laravel.com/docs/6.x/events#writing-event-subscribers + * @see https://laravel.com/docs/8.x/events#writing-event-subscribers * * @param string $subscriber: The class attribute of the subscriber class */ diff --git a/framework/core/src/Extend/View.php b/framework/core/src/Extend/View.php index 8850d96db..9c8cfce75 100644 --- a/framework/core/src/Extend/View.php +++ b/framework/core/src/Extend/View.php @@ -27,7 +27,7 @@ class View implements ExtenderInterface, LifecycleInterface * * Views can then be used in your extension by injecting an instance of `Illuminate\Contracts\View\Factory`, * and calling its `make` method. The `make` method takes the view parameter in the format NAMESPACE::VIEW_NAME. - * You can also pass variables into a view: for more information, see https://laravel.com/api/6.x/Illuminate/View/Factory.html#method_make + * You can also pass variables into a view: for more information, see https://laravel.com/api/8.x/Illuminate/View/Factory.html#method_make * * @param string $namespace: The name of the namespace. * @param string|array $hints: This is a path (or an array of paths) to the folder(s) diff --git a/framework/core/src/Extension/Extension.php b/framework/core/src/Extension/Extension.php index e35651878..c016d161a 100644 --- a/framework/core/src/Extension/Extension.php +++ b/framework/core/src/Extension/Extension.php @@ -157,7 +157,7 @@ class Extension implements Arrayable /** * Dot notation getter for composer.json attributes. * - * @see https://laravel.com/docs/5.1/helpers#arrays + * @see https://laravel.com/docs/8.x/helpers#arrays * * @param $name * @return mixed