Skip to content

Commit

Permalink
Enhancemnt: Remove useless class comments from examples
Browse files Browse the repository at this point in the history
  • Loading branch information
OskarStark committed Aug 29, 2024
1 parent c48ccd5 commit 4d98064
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 15 deletions.
2 changes: 0 additions & 2 deletions examples/CompleteNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,6 @@
use Serhiy\Pushover\Recipient;

/**
* Complete Notification Example.
*
* @author Serhiy Lunak
*/
final class CompleteNotificationExample
Expand Down
2 changes: 0 additions & 2 deletions examples/EmergencyNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
use Serhiy\Pushover\Recipient;

/**
* Emergency Notification Example.
*
* @author Serhiy Lunak
*/
final class EmergencyNotificationExample
Expand Down
2 changes: 1 addition & 1 deletion examples/GroupsExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
use Serhiy\Pushover\Recipient;

/**
* Work with groups example.
* Working with groups.
*
* @author Serhiy Lunak
*/
Expand Down
2 changes: 0 additions & 2 deletions examples/HtmlNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
use Serhiy\Pushover\Recipient;

/**
* HTML Notification Example.
*
* @author Serhiy Lunak
*/
final class HtmlNotificationExample
Expand Down
2 changes: 1 addition & 1 deletion examples/ResponseExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
use Serhiy\Pushover\Recipient;

/**
* Response Object Example.
* Response object example.
*
* @author Serhiy Lunak
*/
Expand Down
2 changes: 0 additions & 2 deletions examples/SimpleNotificationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,6 @@
use Serhiy\Pushover\Recipient;

/**
* Simple Notification Example.
*
* @author Serhiy Lunak
*/
final class SimpleNotificationExample
Expand Down
2 changes: 0 additions & 2 deletions examples/UserGroupValidationExample.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@
use Serhiy\Pushover\Recipient;

/**
* Validation Example.
*
* @author Serhiy Lunak
*/
final class UserGroupValidationExample
Expand Down
15 changes: 12 additions & 3 deletions rector.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,22 @@

declare(strict_types=1);

/**
* This file is part of the Pushover package.
*
* (c) Serhiy Lunak <https://github.com/slunak>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/

use Rector\Config\RectorConfig;

return RectorConfig::configure()
->withPaths([
__DIR__ . '/examples',
__DIR__ . '/src',
__DIR__ . '/tests',
__DIR__.'/examples',
__DIR__.'/src',
__DIR__.'/tests',
])
->withPhp74Sets()
->withTypeCoverageLevel(0);

0 comments on commit 4d98064

Please sign in to comment.