From a1ad85bab5141269822352181c354356c3a59518 Mon Sep 17 00:00:00 2001 From: Fabio Date: Thu, 22 Sep 2022 11:29:31 -0300 Subject: [PATCH] Copyright --- src/Commands/CommandGenerator.php | 10 ++++++++-- src/Commands/ControllerGenerator.php | 10 ++++++++-- src/Commands/Generator.php | 10 ++++++++-- src/Commands/ModelGenerator.php | 10 ++++++++-- src/Commands/ModuleGenerator.php | 10 ++++++++-- src/Commands/RouteGenerator.php | 10 ++++++++-- src/Commands/ServiceGenerator.php | 10 ++++++++-- src/Core/ModularServiceProvider.php | 10 ++++++++-- src/Core/Request.php | 10 ++++++++-- src/Core/Response.php | 10 ++++++++-- src/Core/Service.php | 10 ++++++++-- src/Core/Utils.php | 10 ++++++++-- src/stubs/controller.stub | 6 ++++++ src/stubs/model.stub | 6 ++++++ src/stubs/repository.stub | 6 ++++++ src/stubs/request.stub | 6 ++++++ src/stubs/response.stub | 6 ++++++ src/stubs/service.stub | 6 ++++++ 18 files changed, 132 insertions(+), 24 deletions(-) diff --git a/src/Commands/CommandGenerator.php b/src/Commands/CommandGenerator.php index 5ddc312..4bafac0 100644 --- a/src/Commands/CommandGenerator.php +++ b/src/Commands/CommandGenerator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Commands/ControllerGenerator.php b/src/Commands/ControllerGenerator.php index c4aed6b..407442c 100644 --- a/src/Commands/ControllerGenerator.php +++ b/src/Commands/ControllerGenerator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Commands/Generator.php b/src/Commands/Generator.php index 5b7c2f3..6561878 100644 --- a/src/Commands/Generator.php +++ b/src/Commands/Generator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Commands/ModelGenerator.php b/src/Commands/ModelGenerator.php index 9240664..a4cffa8 100644 --- a/src/Commands/ModelGenerator.php +++ b/src/Commands/ModelGenerator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Commands/ModuleGenerator.php b/src/Commands/ModuleGenerator.php index 8b929ae..05365db 100644 --- a/src/Commands/ModuleGenerator.php +++ b/src/Commands/ModuleGenerator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Commands/RouteGenerator.php b/src/Commands/RouteGenerator.php index a93e59d..fd794f0 100644 --- a/src/Commands/RouteGenerator.php +++ b/src/Commands/RouteGenerator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Commands/ServiceGenerator.php b/src/Commands/ServiceGenerator.php index cd17227..8308bb4 100644 --- a/src/Commands/ServiceGenerator.php +++ b/src/Commands/ServiceGenerator.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Commands; diff --git a/src/Core/ModularServiceProvider.php b/src/Core/ModularServiceProvider.php index a440879..1e2b364 100644 --- a/src/Core/ModularServiceProvider.php +++ b/src/Core/ModularServiceProvider.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Core; diff --git a/src/Core/Request.php b/src/Core/Request.php index 7a7d47c..41119e9 100644 --- a/src/Core/Request.php +++ b/src/Core/Request.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Core; diff --git a/src/Core/Response.php b/src/Core/Response.php index 7e74996..8b51959 100644 --- a/src/Core/Response.php +++ b/src/Core/Response.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Core; diff --git a/src/Core/Service.php b/src/Core/Service.php index 6152f0e..5148ec1 100644 --- a/src/Core/Service.php +++ b/src/Core/Service.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Core; diff --git a/src/Core/Utils.php b/src/Core/Utils.php index 1de67fd..0314b48 100644 --- a/src/Core/Utils.php +++ b/src/Core/Utils.php @@ -1,7 +1,13 @@ - * Licensed under MIT + * This file is part of the kascat/easy-module library + * + * For the full copyright and license information, please view the LICENSE + * file that was distributed with this source code. + * + * @copyright Copyright (c) Fabio Dukievicz + * @license http://opensource.org/licenses/MIT MIT */ namespace Kascat\EasyModule\Core; diff --git a/src/stubs/controller.stub b/src/stubs/controller.stub index ca487b3..dd36f3d 100644 --- a/src/stubs/controller.stub +++ b/src/stubs/controller.stub @@ -1,5 +1,11 @@