Skip to content

Commit 18ce5f9

Browse files
author
Andrey Helldar
committed
Removed finalize classes
1 parent 7c0b46c commit 18ce5f9

File tree

10 files changed

+17
-16
lines changed

10 files changed

+17
-16
lines changed

src/Facades/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @method static \PrettyRoutes\Support\Cache when($value);
2525
* @method static bool routeClear();
2626
*/
27-
final class Cache extends Facade
27+
class Cache extends Facade
2828
{
2929
protected static function getFacadeAccessor()
3030
{

src/Facades/Trans.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @method static array all()
2525
* @method static string get(string $key)
2626
*/
27-
final class Trans extends Facade
27+
class Trans extends Facade
2828
{
2929
protected static function getFacadeAccessor()
3030
{

src/ServiceProvider.php

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,19 @@
22
/******************************************************************************
33
* This file is part of the "andrey-helldar/pretty-routes" project. *
44
* *
5-
* @author Andrey Helldar <[email protected]> *
6-
* @author Gary Green <holegary@gmail.com> *
5+
*
6+
* @see https://github.com/andrey-helldar/pretty-routes *
77
* *
8-
* @copyright 2021 Andrey Helldar, Gary Green *
8+
* For the full copyright and license information, please view the LICENSE *
9+
* file that was distributed with this source code. *
10+
******************************************************************************@author Gary Green <[email protected]> *
911
* *
12+
* @author Andrey Helldar <[email protected]> *
1013
* @license MIT *
1114
* *
12-
* @see https://github.com/andrey-helldar/pretty-routes *
15+
* @copyright 2021 Andrey Helldar, Gary Green *
1316
* *
14-
* For the full copyright and license information, please view the LICENSE *
15-
* file that was distributed with this source code. *
16-
******************************************************************************/
17+
*/
1718

1819
namespace PrettyRoutes;
1920

src/Support/Cache.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
use Illuminate\Support\Facades\Artisan;
2121

22-
final class Cache
22+
class Cache
2323
{
2424
protected $when = true;
2525

src/Support/Config.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Helldar\LaravelRoutesCore\Contracts\Config as ConfigContract;
2121
use Illuminate\Support\Facades\Config as Conf;
2222

23-
final class Config implements ConfigContract
23+
class Config implements ConfigContract
2424
{
2525
public function getApiMiddleware(): array
2626
{

src/Support/Trans.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
use Helldar\Support\Facades\Helpers\Arr;
2121
use Illuminate\Support\Facades\App;
2222

23-
final class Trans
23+
class Trans
2424
{
2525
public const DEFAULT_LOCALE = 'en';
2626

tests/AjaxTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
use Illuminate\Support\Facades\Validator;
2121

22-
final class AjaxTest extends TestCase
22+
class AjaxTest extends TestCase
2323
{
2424
public function testStructure()
2525
{

tests/Localizations/EnTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
use Tests\TestCase;
2121

22-
final class EnTest extends TestCase
22+
class EnTest extends TestCase
2323
{
2424
public function testApp()
2525
{

tests/Localizations/FrTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
use Tests\TestCase;
2121

22-
final class FrTest extends TestCase
22+
class FrTest extends TestCase
2323
{
2424
public function testApp()
2525
{

tests/Localizations/RuTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
use Tests\TestCase;
2121

22-
final class RuTest extends TestCase
22+
class RuTest extends TestCase
2323
{
2424
public function testApp()
2525
{

0 commit comments

Comments
 (0)