Skip to content

Commit

Permalink
[HttpFoundation] Moved licence
Browse files Browse the repository at this point in the history
  • Loading branch information
blue-eyes authored and fabpot committed Jan 29, 2011
1 parent 55f38e1 commit 996c2b0
Show file tree
Hide file tree
Showing 15 changed files with 65 additions and 46 deletions.
9 changes: 9 additions & 0 deletions src/Symfony/Component/HttpFoundation/Cookie.php
@@ -1,5 +1,14 @@
<?php

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

namespace Symfony\Component\HttpFoundation;

/**
Expand Down
@@ -1,15 +1,16 @@
<?php

namespace Symfony\Component\HttpFoundation\File\Exception;

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

namespace Symfony\Component\HttpFoundation\File\Exception;

/**
* Thrown when the access on a file was denied.
*
Expand Down
@@ -1,15 +1,16 @@
<?php

namespace Symfony\Component\HttpFoundation\File\Exception;

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

namespace Symfony\Component\HttpFoundation\File\Exception;

/**
* Thrown when an error occurred in the component File
*
Expand Down
@@ -1,15 +1,16 @@
<?php

namespace Symfony\Component\HttpFoundation\File\Exception;

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

namespace Symfony\Component\HttpFoundation\File\Exception;

/**
* Thrown when a file was not found
*
Expand Down
13 changes: 7 additions & 6 deletions src/Symfony/Component/HttpFoundation/File/File.php
@@ -1,19 +1,20 @@
<?php

namespace Symfony\Component\HttpFoundation\File;

use Symfony\Component\HttpFoundation\File\Exception\FileException;
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser;

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

namespace Symfony\Component\HttpFoundation\File;

use Symfony\Component\HttpFoundation\File\Exception\FileException;
use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\MimeType\MimeTypeGuesser;

/**
* A file in the file system
*
Expand Down
@@ -1,18 +1,19 @@
<?php

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

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

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

/**
* Guesses the mime type using the PHP function mime_content_type().
*
Expand Down
@@ -1,18 +1,19 @@
<?php

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

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

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

/**
* Guesses the mime type with the binary "file" (only available on *nix)
*
Expand Down
@@ -1,18 +1,19 @@
<?php

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

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

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

/**
* Guesses the mime type using the PECL extension FileInfo
*
Expand Down
@@ -1,18 +1,19 @@
<?php

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

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

namespace Symfony\Component\HttpFoundation\File\MimeType;

use Symfony\Component\HttpFoundation\File\Exception\FileNotFoundException;
use Symfony\Component\HttpFoundation\File\Exception\AccessDeniedException;

/**
* A singleton mime type guesser.
*
Expand Down
@@ -1,15 +1,16 @@
<?php

namespace Symfony\Component\HttpFoundation\File\MimeType;

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

namespace Symfony\Component\HttpFoundation\File\MimeType;

/**
* Guesses the mime type of a file
*
Expand Down
9 changes: 5 additions & 4 deletions src/Symfony/Component/HttpFoundation/File/UploadedFile.php
@@ -1,17 +1,18 @@
<?php

namespace Symfony\Component\HttpFoundation\File;

use Symfony\Component\HttpFoundation\File\Exception\FileException;

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

namespace Symfony\Component\HttpFoundation\File;

use Symfony\Component\HttpFoundation\File\Exception\FileException;

/**
* A file uploaded through a form.
*
Expand Down
@@ -1,7 +1,5 @@
<?php

namespace Symfony\Component\HttpFoundation\SessionStorage;

/*
* This file is part of the Symfony package.
*
Expand All @@ -11,6 +9,8 @@
* file that was distributed with this source code.
*/

namespace Symfony\Component\HttpFoundation\SessionStorage;

/**
* ArraySessionStorage.
*
Expand Down
@@ -1,7 +1,5 @@
<?php

namespace Symfony\Component\HttpFoundation\SessionStorage;

/*
* This file is part of the Symfony package.
*
Expand All @@ -11,6 +9,8 @@
* file that was distributed with this source code.
*/

namespace Symfony\Component\HttpFoundation\SessionStorage;

/**
* NativeSessionStorage.
*
Expand Down
@@ -1,7 +1,5 @@
<?php

namespace Symfony\Component\HttpFoundation\SessionStorage;

/*
* This file is part of the Symfony package.
*
Expand All @@ -11,6 +9,8 @@
* file that was distributed with this source code.
*/

namespace Symfony\Component\HttpFoundation\SessionStorage;

/**
* PdoSessionStorage.
*
Expand Down
@@ -1,7 +1,5 @@
<?php

namespace Symfony\Component\HttpFoundation\SessionStorage;

/*
* This file is part of the Symfony package.
*
Expand All @@ -11,6 +9,8 @@
* file that was distributed with this source code.
*/

namespace Symfony\Component\HttpFoundation\SessionStorage;

/**
* SessionStorageInterface.
*
Expand Down

0 comments on commit 996c2b0

Please sign in to comment.