File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -760,31 +760,31 @@ $this->dontSeeInSchedule('foobarbaz');
760760
761761#### `seeRegisteredAlias()`
762762
763- Check that the specified alias was successfully registered by alias loader:
763+ Check that the specified alias was successfully registered by the alias loader:
764764
765765```php
766766$this->seeRegisteredAlias(' Twitter' );
767767```
768768
769769#### `dontSeeRegisteredAlias()`
770770
771- Check that the specified alias was not registered by alias loader:
771+ Check that the specified alias was not registered by the alias loader:
772772
773773```php
774774$this->dontSeeRegisteredAlias(' FooBarBaz' );
775775```
776776
777777#### `seeRegisteredCommand()`
778778
779- Checks that specified command was successfully registered by service provider:
779+ Check that the specified command was successfully registered by the service provider:
780780
781781```php
782782$this->seeRegisteredCommand(' my-command' );
783783```
784784
785785#### `dontSeeRegisteredCommand()`
786786
787- Checks that specified command was not registered by service provider:
787+ Check that the specified command was not registered by the service provider:
788788
789789```php
790790$this->dontSeeRegisteredCommand(' foobarbaz' );
You can’t perform that action at this time.
0 commit comments