Skip to content

Commit

Permalink
style: Set extended package description in the header comment
Browse files Browse the repository at this point in the history
Signed-off-by: Sacha Telgenhof <[email protected]>
  • Loading branch information
stelgenhof committed Feb 7, 2024
1 parent 862eb2b commit 70d16c8
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 9 deletions.
3 changes: 2 additions & 1 deletion .php-cs-fixer.dist.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
<?php

declare(strict_types=1);

/**
* This file is part of the WAQI (World Air Quality Index) package.
*
Expand All @@ -12,7 +13,7 @@
* @author Sacha Telgenhof <me at sachatelgenhof dot com>
*/

$config = new AzuyaLabs\PhpCsFixerConfig\Config('2017');
$config = new AzuyaLabs\PhpCsFixerConfig\Config('2017', null, 'WAQI (World Air Quality Index)');
$config->getFinder()->in(__DIR__)->notPath('var');

return $config;
2 changes: 1 addition & 1 deletion phpinsights.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion src/AirQuality.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/InvalidAccessToken.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/QuotaExceeded.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion src/Exceptions/UnknownStation.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion src/WAQI.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down
2 changes: 1 addition & 1 deletion tests/WAQITest.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
declare(strict_types = 1);

/**
* This file is part of the 'azuyalabs/waqi' package.
* This file is part of the 'WAQI (World Air Quality Index)' package.
*
* Simple PHP Wrapper for the World Air Quality Index API.
*
Expand Down

0 comments on commit 70d16c8

Please sign in to comment.