Skip to content

Commit

Permalink
Simplification de la phpDoc dans les entêtes des fichiers et classes.
Browse files Browse the repository at this point in the history
  • Loading branch information
noelma committed Feb 22, 2020
1 parent 0bf41df commit 572add8
Show file tree
Hide file tree
Showing 103 changed files with 105 additions and 300 deletions.
4 changes: 1 addition & 3 deletions src/App.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -23,7 +21,7 @@
* Coeur de l'application, il est le ciment qui unis les modules et les services.
* Il possède la logique de framework (le router, les configurations... ).
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
abstract class App
{
Expand Down
4 changes: 1 addition & 3 deletions src/Autoload.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -15,7 +13,7 @@
*
* @see https://www.php-fig.org/psr/psr-4/ Suit les recommandations PSR-4.
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Autoload
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Email/Email.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Form
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -13,7 +11,7 @@
/**
* Créer un email de type text ou HTML.
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Email
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Form/FormBuilder.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Form
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -15,7 +13,7 @@
*
* @see http://www.w3schools.com/html/html_forms.asp
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class FormBuilder extends FormGroupBuilder
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Form/FormGroupBuilder.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Form
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -15,7 +13,7 @@
*
* @see http://www.w3schools.com/html/html_forms.asp
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class FormGroupBuilder
{
Expand Down
3 changes: 1 addition & 2 deletions src/Components/Form/FormRenderTrait.php
Expand Up @@ -4,7 +4,6 @@
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Form
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -13,7 +12,7 @@
/**
* Génèration des champs de formulaire.
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
trait FormRenderTrait
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/Message.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -21,7 +19,7 @@
* @link http://www.ietf.org/rfc/rfc7231.txt
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Message implements MessageInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/Redirect.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -15,7 +13,7 @@
*
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Redirect extends Response
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/Request.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -19,7 +17,7 @@
*
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Request extends Message implements RequestInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/Response.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -17,7 +15,7 @@
*
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Response extends Message implements ResponseInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/ServerRequest.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -19,7 +17,7 @@
*
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class ServerRequest extends Request implements ServerRequestInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/Stream.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -17,7 +15,7 @@
*
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Stream implements StreamInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/UploadedFile.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -18,7 +16,7 @@
*
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class UploadedFile implements UploadedFileInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Http/Uri.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Http
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -19,7 +17,7 @@
* @link https://en.wikipedia.org/wiki/Uniform_Resource_Identifier
* @link https://www.php-fig.org/psr/psr-7/ PSR-7: HTTP message interfaces
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Uri implements UriInterface
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/HttpFactories/RequestFactory.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\HttpFactories
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -18,7 +16,7 @@
*
* @link https://www.php-fig.org/psr/psr-17/ PSR-17: HTTP Factories
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class RequestFactory
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/HttpFactories/ResponseFactory.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\HttpFactories
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -17,7 +15,7 @@
*
* @link https://www.php-fig.org/psr/psr-17/ PSR-17: HTTP Factories
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class ResponseFactory
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/HttpFactories/ServerRequestFactory.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\HttpFactories
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -18,7 +16,7 @@
*
* @link https://www.php-fig.org/psr/psr-17/ PSR-17: HTTP Factories
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class ServerRequestFactory
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/HttpFactories/StreamFactory.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\HttpFactories
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -17,7 +15,7 @@
*
* @link https://www.php-fig.org/psr/psr-17/ PSR-17: HTTP Factories
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class StreamFactory
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/HttpFactories/UploadedFileFactory.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\HttpFactories
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -18,7 +16,7 @@
*
* @link https://www.php-fig.org/psr/psr-17/ PSR-17: HTTP Factories
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class UploadedFileFactory
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/HttpFactories/UriFactory.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\HttpFactories
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -17,7 +15,7 @@
*
* @link https://www.php-fig.org/psr/psr-17/ PSR-17: HTTP Factories
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class UriFactory
{
Expand Down
4 changes: 1 addition & 3 deletions src/Components/Paginate/Paginator.php
Expand Up @@ -3,8 +3,6 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Components\Paginate
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

Expand All @@ -13,7 +11,7 @@
/**
* Construit et génère une pagination.
*
* @author Mathieu NOËL
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class Paginator
{
Expand Down
4 changes: 2 additions & 2 deletions src/Components/Router/Exception/RouteArgumentException.php
Expand Up @@ -3,15 +3,15 @@
/**
* Soosyze Framework https://soosyze.com
*
* @package Soosyze\Exception\App
* @author Mathieu NOËL <mathieu@soosyze.com>
* @license https://github.com/soosyze/framework/blob/master/LICENSE (MIT License)
*/

namespace Soosyze\Components\Router\Exception;

/**
* Exception levée lorsqu'un paramètre de la route ne remplit pas la condition.
*
* @author Mathieu NOËL <mathieu@soosyze.com>
*/
class RouteArgumentException extends \Exception
{
Expand Down

0 comments on commit 572add8

Please sign in to comment.