8000 fix styleci · laravel/framework@958d02b · GitHub
[go: up one dir, main page]

Skip to content

Commit 958d02b

Browse files
fix styleci
1 parent 0aca5a9 commit 958d02b

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

src/Illuminate/Console/Application.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -292,7 +292,7 @@ public function resolveCommands($commands)
292292
}
293293

294294
/**
295-
* Set the Container Command Loader
295+
* Set the Container Command Loader.
296296
*
297297
* @return $this
298298
*/

src/Illuminate/Console/ContainerCommandLoader.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class ContainerCommandLoader implements CommandLoaderInterface
1717

1818
/**
1919
* A map of command names to classes.
20-
*
20+
*
2121
* @var array
2222
*/
2323
protected $commandMap;
@@ -42,7 +42,7 @@ public function __construct(ContainerInterface $container, array $commandMap)
4242
*/
4343
public function get(string $name)
4444
{
45-
if (!$this->has($name)) {
45+
if (! $this->has($name)) {
4646
throw new CommandNotFoundException(sprintf('Command "%s" does not exist.', $name));
4747
}
4848

@@ -62,11 +62,11 @@ public function has(string $name)
6262

6363
/**
6464
* Get the command names.
65-
*
65+
*
6666
* @return string[]
6767
*/
6868
public function getNames()
6969
{
7070
return array_keys($this->commandMap);
7171
}
72-
}
72+
}

0 commit comments

Comments
 (0)
0