Skip to content

Commit 43596ac

Browse files
committed
More typos [skip-ci]
1 parent 8d72dfe commit 43596ac

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

app/sprinkles/core/src/Bakery/Test.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,9 +43,9 @@ protected function configure()
4343
->addOption('coverage', 'c', InputOption::VALUE_NONE, 'Enable code coverage report.')
4444
->addOption('coverage-format', null, InputOption::VALUE_REQUIRED, 'Select test coverage format. Choose from html, clover, crap4j, php, text, xml, etc. Default to HTML.')
4545
->addOption('coverage-path', null, InputOption::VALUE_REQUIRED, 'Code coverage report saving location. Default to `_meta/coverage`.')
46-
->addArgument('testscope', InputArgument::OPTIONAL, 'Test Scope can either be a sprinkle name or a test class (optional)')
46+
->addArgument('testscope', InputArgument::OPTIONAL, 'Test Scope can either be a sprinkle name or a test class (optional).')
4747
->setDescription('Runs automated tests')
48-
->setHelp("Run PHP unit tests. Tests from a specific sprinkle can optionally be run using the 'testscope' argument (`php bakery test SprinkleName`). A specific test class can also be run using the testscope argument (`php bakery test 'UserFrosting\Sprinkle\SprinkleName\Tests\TestClass'`), as a specific test method (`php bakery test 'UserFrosting\Sprinkle\SprinkleName\Tests\TestClass::method'`).");
48+
->setHelp("Run PHP unit tests. Tests from a specific sprinkle can optionally be run using the 'testscope' argument (eg. `php bakery test SprinkleName`). A specific test class can also be run using the testscope argument (eg. `php bakery test 'UserFrosting\Sprinkle\SprinkleName\Tests\TestClass'`), as a specific test method (eg. `php bakery test 'UserFrosting\Sprinkle\SprinkleName\Tests\TestClass::method'`).");
4949
}
5050

5151
/**

app/sprinkles/core/src/Bakery/TestMailCommand.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ protected function configure()
3131
{
3232
$this->setName('test:mail')
3333
->setDescription('Test mail settings')
34-
->setHelp('This command let you test the email sending capability of your UserFrosting setup')
35-
->addOption('to', null, InputOption::VALUE_REQUIRED, 'Adress to send test email to. Use admin contact if ommited.');
34+
->setHelp('This command let you test the email sending capability of your UserFrosting setup.')
35+
->addOption('to', null, InputOption::VALUE_REQUIRED, 'Email address to send test email to. Use admin contact if omitted.');
3636
}
3737

3838
/**

0 commit comments

Comments
 (0)