diff --git a/app/NodeSandbox.php b/app/NodeSandbox.php index 14a83ba9..2af601fe 100644 --- a/app/NodeSandbox.php +++ b/app/NodeSandbox.php @@ -31,7 +31,7 @@ class NodeSandbox /** * Creates a new node sandbox instance. * - * @param string + * @param string $path * @return void */ public function __construct($path) @@ -76,8 +76,8 @@ public function path() /** * Run the given commands. * - * @param array - * @return \Illuminate\Process\ProcessResult + * @param array $commands + * @return \Illuminate\Contracts\Process\ProcessResult */ public function run($commands) { diff --git a/app/Prettier.php b/app/Prettier.php index 0ea33ad4..db4d3848 100644 --- a/app/Prettier.php +++ b/app/Prettier.php @@ -14,7 +14,7 @@ class Prettier /** * The node sandbox instance. * - * @param \App\NodeSandbox + * @param \App\NodeSandbox $sandbox * @return void */ public function __construct($sandbox) @@ -25,8 +25,8 @@ public function __construct($sandbox) /** * Run the prettier command. * - * @param array - * @return \Illuminate\Process\ProcessResult + * @param array $params + * @return \Illuminate\Contracts\Process\ProcessResult */ public function run($params = []) { diff --git a/pint.json b/pint.json index 42fe6d22..3a825200 100644 --- a/pint.json +++ b/pint.json @@ -1,5 +1,8 @@ { "exclude": [ "tests/Fixtures" - ] + ], + "rules": { + "Laravel/blade": false + } }