Skip to content

Commit 643ada6

Browse files
committed
Apply phpcs
1 parent cdf28d4 commit 643ada6

17 files changed

+22
-22
lines changed

src/Application.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,6 @@
44

55
namespace Boson;
66

7-
use FFI\CData;
8-
use Psr\EventDispatcher\EventDispatcherInterface as PsrEventDispatcherInterface;
97
use Boson\Dispatcher\DelegateEventListener;
108
use Boson\Dispatcher\EventListener;
119
use Boson\Event\ApplicationStarted;
@@ -28,6 +26,8 @@
2826
use Boson\Window\Event\WindowClosed;
2927
use Boson\Window\Manager\WindowManager;
3028
use Boson\Window\Window;
29+
use FFI\CData;
30+
use Psr\EventDispatcher\EventDispatcherInterface as PsrEventDispatcherInterface;
3131

3232
/**
3333
* @api

src/ApplicationId.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace Boson;
66

7-
use FFI\CData;
87
use Boson\Internal\Saucer\LibSaucer;
98
use Boson\Shared\Id\StructPointerId;
9+
use FFI\CData;
1010

1111
final readonly class ApplicationId extends StructPointerId
1212
{

src/Dispatcher/EventListener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@
44

55
namespace Boson\Dispatcher;
66

7-
use Psr\EventDispatcher\StoppableEventInterface;
87
use Boson\Dispatcher\Subscription\CancellableSubscription;
98
use Boson\Dispatcher\Subscription\CancellableSubscriptionInterface;
109
use Boson\Dispatcher\Subscription\SubscriptionInterface;
1110
use Boson\Shared\IdValueGenerator\IdValueGeneratorInterface;
1211
use Boson\Shared\IdValueGenerator\IntValueGenerator;
12+
use Psr\EventDispatcher\StoppableEventInterface;
1313

1414
class EventListener implements EventListenerInterface, EventDispatcherInterface
1515
{

src/Dispatcher/EventListenerInterface.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace Boson\Dispatcher;
66

7-
use Psr\EventDispatcher\ListenerProviderInterface;
87
use Boson\Dispatcher\Subscription\CancellableSubscriptionInterface;
98
use Boson\Dispatcher\Subscription\SubscriptionInterface;
9+
use Psr\EventDispatcher\ListenerProviderInterface;
1010

1111
interface EventListenerInterface extends ListenerProviderInterface
1212
{

src/Internal/ProcessUnlockPlaceholder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace Boson\Internal;
66

7-
use FFI\CData;
87
use Boson\Application;
98
use Boson\Internal\Saucer\LibSaucer;
9+
use FFI\CData;
1010

1111
/**
1212
* Provides a placeholder to unlock the process workflow.

src/Internal/Saucer/LibSaucer.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@
44

55
namespace Boson\Internal\Saucer;
66

7-
use FFI\Env\Runtime;
87
use Boson\Environment\Architecture;
98
use Boson\Environment\Exception\UnsupportedArchitectureException;
109
use Boson\Environment\Exception\UnsupportedOperatingSystemException;
1110
use Boson\Environment\OperatingSystem;
11+
use FFI\Env\Runtime;
1212

1313
/**
1414
* @mixin \FFI

src/Shared/Id/StructPointerId.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44

55
namespace Boson\Shared\Id;
66

7-
use FFI\CData;
87
use Boson\Internal\Saucer\LibSaucer;
98
use Boson\Shared\ValueObject\ValueObjectInterface;
9+
use FFI\CData;
1010

1111
/**
1212
* @template-implements IntIdInterface<int>

src/WebView/Internal/WebViewEventHandler.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44

55
namespace Boson\WebView\Internal;
66

7-
use FFI\CData;
87
use Boson\Dispatcher\EventDispatcherInterface;
98
use Boson\Internal\Saucer\LibSaucer;
109
use Boson\Internal\Saucer\SaucerPolicy;
@@ -24,6 +23,7 @@
2423
use Boson\WebView\State;
2524
use Boson\WebView\Url\UrlParserInterface;
2625
use Boson\WebView\WebView;
26+
use FFI\CData;
2727

2828
/**
2929
* @internal this is an internal library class, please do not use it in your code

src/WebView/Requests/WebViewRequests.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,14 +4,14 @@
44

55
namespace Boson\WebView\Requests;
66

7-
use JetBrains\PhpStorm\Language;
87
use Boson\Internal\ProcessUnlockPlaceholder;
98
use Boson\Shared\IdValueGenerator\IdValueGeneratorInterface;
109
use Boson\Shared\IdValueGenerator\IntValueGenerator;
1110
use Boson\Shared\Marker\BlockingOperation;
1211
use Boson\WebView\Requests\Exception\StalledRequestException;
1312
use Boson\WebView\Requests\Exception\UnprocessableRequestException;
1413
use Boson\WebView\WebView;
14+
use JetBrains\PhpStorm\Language;
1515

1616
final class WebViewRequests
1717
{

src/WebView/Scripts/WebViewScript.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44

55
namespace Boson\WebView\Scripts;
66

7-
use JetBrains\PhpStorm\Language;
87
use Boson\Internal\Saucer\LibSaucer;
8+
use JetBrains\PhpStorm\Language;
99

1010
final readonly class WebViewScript implements \Stringable
1111
{

0 commit comments

Comments
 (0)