Skip to content

Commit

Permalink
normalized license messages in PHP files
Browse files Browse the repository at this point in the history
  • Loading branch information
blue-eyes authored and fabpot committed Jan 18, 2011
1 parent b309adc commit 64e1cf2
Show file tree
Hide file tree
Showing 91 changed files with 455 additions and 455 deletions.
10 changes: 5 additions & 5 deletions Constraint.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

use Symfony\Component\Validator\Exception\InvalidOptionsException;
use Symfony\Component\Validator\Exception\MissingOptionsException;
use Symfony\Component\Validator\Exception\ConstraintDefinitionException;
Expand Down
10 changes: 5 additions & 5 deletions ConstraintValidator.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

abstract class ConstraintValidator implements ConstraintValidatorInterface
{
protected $context;
Expand Down
10 changes: 5 additions & 5 deletions ConstraintValidatorFactory.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

use Symfony\Component\Validator\ConstraintValidatorFactoryInterface;
use Symfony\Component\Validator\Constraint;

Expand Down
10 changes: 5 additions & 5 deletions ConstraintValidatorFactoryInterface.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

use Symfony\Component\Validator\Constraint;

/**
Expand Down
10 changes: 5 additions & 5 deletions ConstraintValidatorInterface.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

interface ConstraintValidatorInterface
{
/**
Expand Down
10 changes: 5 additions & 5 deletions ConstraintViolation.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

/**
* Represents a single violation of a constraint.
*/
Expand Down
10 changes: 5 additions & 5 deletions ConstraintViolationList.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator;

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

namespace Symfony\Component\Validator;

/**
* An array-acting object that holds many ConstrainViolation instances.
*/
Expand Down
10 changes: 5 additions & 5 deletions Constraints/All.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

class All extends \Symfony\Component\Validator\Constraint
{
public $constraints = array();
Expand Down
10 changes: 5 additions & 5 deletions Constraints/AllValidator.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;
use Symfony\Component\Validator\Exception\UnexpectedTypeException;
Expand Down
10 changes: 5 additions & 5 deletions Constraints/AssertFalse.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

class AssertFalse extends \Symfony\Component\Validator\Constraint
{
public $message = 'This value should be false';
Expand Down
10 changes: 5 additions & 5 deletions Constraints/AssertFalseValidator.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

Expand Down
10 changes: 5 additions & 5 deletions Constraints/AssertTrue.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

class AssertTrue extends \Symfony\Component\Validator\Constraint
{
public $message = 'This value should be true';
Expand Down
10 changes: 5 additions & 5 deletions Constraints/AssertTrueValidator.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

Expand Down
10 changes: 5 additions & 5 deletions Constraints/AssertType.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

class AssertType extends \Symfony\Component\Validator\Constraint
{
public $message = 'This value should be of type {{ type }}';
Expand Down
10 changes: 5 additions & 5 deletions Constraints/AssertTypeValidator.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

Expand Down
10 changes: 5 additions & 5 deletions Constraints/Blank.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

class Blank extends \Symfony\Component\Validator\Constraint
{
public $message = 'This value should be blank';
Expand Down
10 changes: 5 additions & 5 deletions Constraints/BlankValidator.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

use Symfony\Component\Validator\Constraint;
use Symfony\Component\Validator\ConstraintValidator;

Expand Down
10 changes: 5 additions & 5 deletions Constraints/Choice.php
@@ -1,16 +1,16 @@
<?php

namespace Symfony\Component\Validator\Constraints;

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

namespace Symfony\Component\Validator\Constraints;

class Choice extends \Symfony\Component\Validator\Constraint
{
public $choices;
Expand Down

0 comments on commit 64e1cf2

Please sign in to comment.