Skip to content

Commit

Permalink
Fix cs
Browse files Browse the repository at this point in the history
Signed-off-by: Abdul Malik Ikhsan <[email protected]>
  • Loading branch information
samsonasik committed Nov 3, 2024
1 parent 59c79ae commit ebc5a0a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 8 deletions.
3 changes: 1 addition & 2 deletions src/Adapter/Service/IteratorFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,7 @@
use Psr\Container\ContainerInterface;

use function array_shift;
use function gettype;
use function is_object;
use function get_debug_type;
use function sprintf;

class IteratorFactory implements FactoryInterface
Expand Down
3 changes: 1 addition & 2 deletions src/AdapterPluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@
use Laminas\ServiceManager\Exception\InvalidServiceException;
use Laminas\ServiceManager\Factory\InvokableFactory;

use function gettype;
use function is_object;
use function get_debug_type;
use function sprintf;

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Paginator.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,10 @@
use function ceil;
use function class_exists;
use function count;
use function get_debug_type;
use function gettype;
use function is_array;
use function is_countable;
use function is_object;
use function is_string;
use function iterator_count;
use function json_encode;
Expand Down
3 changes: 1 addition & 2 deletions src/ScrollingStylePluginManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,7 @@
use Laminas\ServiceManager\Exception\InvalidServiceException;
use Laminas\ServiceManager\Factory\InvokableFactory;

use function gettype;
use function is_object;
use function get_debug_type;
use function sprintf;

/**
Expand Down
2 changes: 1 addition & 1 deletion test/AdapterPluginManagerCompatibilityTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

use function assert;
use function is_string;
use function strpos;
use function str_contains;

class AdapterPluginManagerCompatibilityTest extends TestCase
{
Expand Down

0 comments on commit ebc5a0a

Please sign in to comment.