Skip to content
This repository was archived by the owner on Sep 16, 2021. It is now read-only.

Commit 1178265

Browse files
committed
Fix CS
1 parent a21d108 commit 1178265

19 files changed

+161
-9
lines changed

Cache/CachedCollection.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,8 @@ class CachedCollection implements \IteratorAggregate, \Serializable
3535

3636
/**
3737
* @param array $data
38-
* @param null|string $resource The path to the file of the content object, this is
39-
* used to determine if the cache needs to be updated
38+
* @param null|string $resource The path to the file of the content object, this is
39+
* used to determine if the cache needs to be updated
4040
*/
4141
public function __construct(array $data, $resource = null)
4242
{

Loader/Annotation/Extras.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader\Annotation;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Exception\InvalidArgumentException;

Loader/Annotation/MetaDescription.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader\Annotation;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Model\SeoMetadataInterface;

Loader/Annotation/MetaKeywords.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader\Annotation;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Model\SeoMetadataInterface;

Loader/Annotation/OriginalUrl.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader\Annotation;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Model\SeoMetadataInterface;

Loader/Annotation/SeoMetadataAnnotation.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader\Annotation;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Model\SeoMetadataInterface;

Loader/Annotation/Title.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader\Annotation;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Model\SeoMetadataInterface;

Loader/AnnotationLoader.php

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader;
413

514
use Doctrine\Common\Annotations\Reader;
@@ -86,7 +95,7 @@ private function readAnnotations($content)
8695

8796
return [
8897
'properties' => $this->readProperties($classReflection->getProperties()),
89-
'methods' => $this->readMethods($classReflection->getMethods()),
98+
'methods' => $this->readMethods($classReflection->getMethods()),
9099
];
91100
}
92101

Loader/ExtractorLoader.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader;
413

514
use Psr\Cache\CacheItemPoolInterface;

Loader/SeoMetadataFactory.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
<?php
22

3+
/*
4+
* This file is part of the Symfony CMF package.
5+
*
6+
* (c) 2011-2016 Symfony CMF
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
namespace Symfony\Cmf\Bundle\SeoBundle\Loader;
413

514
use Symfony\Cmf\Bundle\SeoBundle\Exception\InvalidArgumentException;

0 commit comments

Comments
 (0)