Skip to content

Commit bb8f6d1

Browse files
datpmworkgithub-actions[bot]
authored andcommitted
Fix styling
1 parent 712c3ff commit bb8f6d1

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

src/Commands/SlsTinkerCommand.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace DatPM\SlsTinker\Commands;
44

5-
use Psy\Configuration;
6-
use Illuminate\Support\Env;
7-
use Psy\VersionUpdater\Checker;
85
use DatPM\SlsTinker\Shells\LambdaShell;
6+
use Illuminate\Support\Env;
97
use Laravel\Tinker\ClassAliasAutoloader;
108
use Laravel\Tinker\Console\TinkerCommand;
11-
use Symfony\Component\Console\Input\InputOption;
9+
use Psy\Configuration;
10+
use Psy\VersionUpdater\Checker;
1211
use Symfony\Component\Console\Input\InputArgument;
12+
use Symfony\Component\Console\Input\InputOption;
1313

1414
class SlsTinkerCommand extends TinkerCommand
1515
{

src/ShellListeners/LocalLoopListener.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
namespace DatPM\SlsTinker\ShellListeners;
44

5-
use Psy\Shell;
6-
use Psy\ExecutionClosure;
5+
use DatPM\SlsTinker\Lambda\InvocationResult;
6+
use DatPM\SlsTinker\Lambda\TinkerLambdaClient;
7+
use DatPM\SlsTinker\Shells\LambdaShell;
78
use Psy\Exception\BreakException;
89
use Psy\Exception\ThrowUpException;
10+
use Psy\ExecutionClosure;
911
use Psy\ExecutionLoop\AbstractListener;
10-
use DatPM\SlsTinker\Shells\LambdaShell;
11-
use DatPM\SlsTinker\Lambda\InvocationResult;
12-
use DatPM\SlsTinker\Lambda\TinkerLambdaClient;
12+
use Psy\Shell;
1313

1414
class LocalLoopListener extends AbstractListener
1515
{

src/Shells/LambdaShell.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@
22

33
namespace DatPM\SlsTinker\Shells;
44

5-
use Psy\Shell;
6-
use Psy\Configuration;
7-
use Psy\CodeCleaner\NoReturnValue;
85
use Illuminate\Console\OutputStyle;
6+
use Psy\CodeCleaner\NoReturnValue;
7+
use Psy\Configuration;
8+
use Psy\Shell;
99

1010
abstract class LambdaShell extends Shell
1111
{

src/Shells/RemoteLambdaShell.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function setScopeVariables(array $vars)
1212
if ($this->contextRestored) {
1313
$specialVars = $this->getSpecialScopeVariables(false);
1414
$vars = $this->getScopeVariables(false);
15-
# Remove special vars from the list
15+
// Remove special vars from the list
1616
foreach (array_keys($specialVars) as $name) {
1717
unset($vars[$name]);
1818
}

src/SlsTinkerServiceProvider.php

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

33
namespace DatPM\SlsTinker;
44

5-
use Spatie\LaravelPackageTools\Package;
65
use DatPM\SlsTinker\Commands\SlsTinkerCommand;
6+
use Spatie\LaravelPackageTools\Package;
77
use Spatie\LaravelPackageTools\PackageServiceProvider;
88

99
class SlsTinkerServiceProvider extends PackageServiceProvider

tests/LambdaTinkerTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@
3434
'$c = $a + $b;',
3535
'echo $c;',
3636
'$c = 10;',
37-
'echo $c;'
37+
'echo $c;',
3838
], function ($output) {
3939
expect($output)->toMatchArray([
4040
'You\'re running Tinker in AWS Lambda',

0 commit comments

Comments
 (0)