8000 [Form] fixed license and phpdoc · brtriver/symfony@4deb82f · GitHub
[go: up one dir, main page]

Skip to content

Commit 4deb82f

Browse files
committed
[Form] fixed license and phpdoc
1 parent 47bc809 commit 4deb82f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+453
-81
lines changed
< A3DB button class="Button Button--iconOnly Button--invisible flex-shrink-0 flex-order-1" aria-label="Collapse file: src/Symfony/Component/Form/BirthdayField.php">

src/Symfony/Component/Form/BirthdayField.php

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
namespace Symfony\Component\Form;
44

55
/*
6-
* This file is part of the symfony package.
6+
* This file is part of the Symfony framework.
7+
*
78
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
89
*
9-
* For the full copyright and license information, please view the LICENSE
10-
* file that was distributed with this source code.
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
1112
*/
1213

1314
/**
@@ -31,4 +32,4 @@ protected function configure()
3132

3233
parent::configure();
3334
}
34-
}
35+
}

src/Symfony/Component/Form/CheckboxField.php

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33
namespace Symfony\Component\Form;
44

55
/*
6-
* This file is part of the symfony package.
6+
* This file is part of the Symfony framework.
7+
*
78
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
89
*
9-
* For the full copyright and license information, please view the LICENSE
10-
* file that was distributed with this source code.
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
1112
*/
1213

1314
/**

src/Symfony/Component/Form/ChoiceField.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
namespace Symfony\Component\Form;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
use Symfony\Component\Form\Exception\UnexpectedTypeException;
615

716
/**

src/Symfony/Component/Form/CollectionField.php

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,20 +2,20 @@
22

33
namespace Symfony\Component\Form;
44

5-
use Symfony\Component\Form\FieldInterface;
6-
use Symfony\Component\Form\Exception\UnexpectedTypeException;
7-
85
/*
9-
* This file is part of the symfony package.
6+
* This file is part of the Symfony framework.
7+
*
108
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
119
*
12-
* For the full copyright and license information, please view the LICENSE
13-
* file that was distributed with this source code.
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
1412
*/
1513

14+
use Symfony\Component\Form\FieldInterface;
15+
use Symfony\Component\Form\Exception\UnexpectedTypeException;
16+
1617
/**
1718
* @author Bernhard Schussek <bernhard.schussek@symfony-project.com>
18-
* @version SVN: $Id: FieldGroup.php 79 2009-12-08 12:53:15Z bernhard $
1919
*/
2020
class CollectionField extends FieldGroup
2121
{

src/Symfony/Component/Form/Configurable.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
namespace Symfony\Component\Form;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
use Symfony\Component\Form\Exception\MissingOptionsException;
615
use Symfony\Component\Form\Exception\InvalidOptionsException;
716

src/Symfony/Component/Form/Configurator/ConfiguratorInterface.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
namespace Symfony\Component\Form\Configurator;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
interface ConfiguratorInterface
615
{
716
public function initialize($object);

src/Symfony/Component/Form/Configurator/ValidatorConfigurator.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
namespace Symfony\Component\Form\Configurator;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
class ValidatorConfigurator implements ConfiguratorInterface
615
{
716
protected $metaData = null;

src/Symfony/Component/Form/DateField.php

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,22 @@
22

33
namespace Symfony\Component\Form;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
use Symfony\Component\Form\ValueTransformer\ReversedTransformer;
615
use Symfony\Component\Form\ValueTransformer\StringToDateTimeTransformer;
716
use Symfony\Component\Form\ValueTransformer\TimestampToDateTimeTransformer;
817
use Symfony\Component\Form\ValueTransformer\ValueTransformerChain;
918
use Symfony\Component\Form\ValueTransformer\DateTimeToLocalizedStringTransformer;
1019
use Symfony\Component\Form\ValueTransformer\DateTimeToArrayTransformer;
1120

12-
/*
13-
* This file is part of the symfony package.
14-
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
15-
*
16-
* For the full copyright and license information, please view the LICENSE
17-
* file that was distributed with this source code.
18-
*/
19-
2021
class DateField extends HybridField
2122
{
2223
const FULL = 'full';

src/Symfony/Component/Form/DateTimeField.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
namespace Symfony\Component\Form;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license t C659 hat is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
use Symfony\Component\Form\ValueTransformer\StringToDateTimeTransformer;
615
use Symfony\Component\Form\ValueTransformer\TimestampToDateTimeTransformer;
716
use Symfony\Component\Form\ValueTransformer\DateTimeToArrayTransformer;

src/Symfony/Component/Form/Exception/AlreadyBoundException.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
namespace Symfony\Component\Form\Exception;
44

5+
/*
6+
* This file is part of the Symfony framework.
7+
*
8+
* (c) Fabien Potencier <fabien.potencier@symfony-project.com>
9+
*
10+
* This source file is subject to the MIT license that is bundled
11+
* with this source code in the file LICENSE.
12+
*/
13+
514
class AlreadyBoundException extends FormException
615
{
716
}

0 commit comments

Comments
 (0)
0