Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 0 additions & 13 deletions .github/dependabot.yml

This file was deleted.

17 changes: 0 additions & 17 deletions .github/workflows/phpstan.yml

This file was deleted.

4 changes: 4 additions & 0 deletions .github/workflows/phpunit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,12 @@ jobs:
- uses: actions/checkout@v3

- uses: php-actions/composer@v6
with:
php_version: "8.3"

- name: PHPUnit Tests
uses: php-actions/phpunit@v3
with:
php_version: "8.3"
version: "9.6"
configuration: phpunit.xml
14 changes: 0 additions & 14 deletions .github/workflows/spellcheck.yml

This file was deleted.

2 changes: 1 addition & 1 deletion lib/Strategies/ConsoleStrategy.php
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ private function parseSignature(string $signature): array
}

if ($isOption) {
$name = Str::trimLeading($raw, '-');
$name = Str::trimLeading($raw, '--');
Comment thread
alexstandiford marked this conversation as resolved.

if (Str::contains($name, '=')) {
[$name, $default] = explode('=', $name, 2);
Expand Down
3 changes: 1 addition & 2 deletions tests/TestCase.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
<?php

namespace PHPNomad\Core\Tests;

namespace PHPNomad\Integrations\WordPress\Tests;

use PHPNomad\Tests\TestCase as CoreTestCase;

Expand Down
Loading