Skip to content

Commit 58aa54d

Browse files
CS fix
1 parent cfa0ae9 commit 58aa54d

File tree

5 files changed

+46
-1
lines changed

5 files changed

+46
-1
lines changed

Resources/stubs/Attribute.php

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
#[Attribute(Attribute::TARGET_CLASS)]
413
final class Attribute
514
{

Resources/stubs/PhpToken.php

+10-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
<?php
22

3-
if (\PHP_VERSION_ID < 80000 && \extension_loaded('tokenizer')) {
3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
12+
if (\PHP_VERSION_ID < 80000 && extension_loaded('tokenizer')) {
413
class PhpToken extends Symfony\Polyfill\Php80\PhpToken
514
{
615
}

Resources/stubs/Stringable.php

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
if (\PHP_VERSION_ID < 80000) {
413
interface Stringable
514
{

Resources/stubs/UnhandledMatchError.php

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
if (\PHP_VERSION_ID < 80000) {
413
class UnhandledMatchError extends Error
514
{

Resources/stubs/ValueError.php

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony package.
5+
*
6+
* (c) Fabien Potencier <fabien@symfony.com>
7+
*
8+
* For the full copyright and license information, please view the LICENSE
9+
* file that was distributed with this source code.
10+
*/
11+
312
if (\PHP_VERSION_ID < 80000) {
413
class ValueError extends Error
514
{

0 commit comments

Comments
 (0)