We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ad8ae4e commit 3f1bd4fCopy full SHA for 3f1bd4f
1 file changed
spec/Laracasts/Commander/Console/CommandInputParserSpec.php
@@ -1,4 +1,4 @@
1
-<?php namespace spec\Acme\Console;
+<?php namespace spec\Laracasts\Commander\Console;
2
3
use PhpSpec\ObjectBehavior;
4
use Prophecy\Argument;
@@ -7,13 +7,13 @@ class CommandInputParserSpec extends ObjectBehavior {
7
8
function it_is_initializable()
9
{
10
- $this->shouldHaveType('Acme\Console\CommandInputParser');
+ $this->shouldHaveType('Laracasts\Commander\Console\CommandInputParser');
11
}
12
13
function it_returns_an_instance_of_command_input()
14
15
$this->parse('Foo/Bar/MyCommand', 'username, email')
16
- ->shouldBeAnInstanceOf('Acme\Console\CommandInput');
+ ->shouldBeAnInstanceOf('Laracasts\Commander\Console\CommandInput');
17
18
19
function it_parses_the_name_of_the_class()
0 commit comments