Skip to content

Move Factory behaviors to their own namespace #10

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 22, 2015
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
1 change: 0 additions & 1 deletion spec/MessageFactory/DiactorosMessageFactorySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace spec\Http\Message\MessageFactory;

use PhpSpec\ObjectBehavior;
use spec\Http\Message\MessageFactoryBehavior;

class DiactorosMessageFactorySpec extends ObjectBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/MessageFactory/GuzzleMessageFactorySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@
namespace spec\Http\Message\MessageFactory;

use PhpSpec\ObjectBehavior;
use spec\Http\Message\MessageFactoryBehavior;

class GuzzleMessageFactorySpec extends ObjectBehavior
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace spec\Http\Message;
namespace spec\Http\Message\MessageFactory;

trait MessageFactoryBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/StreamFactory/DiactorosStreamFactorySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Zend\Diactoros\Stream;
use PhpSpec\ObjectBehavior;
use spec\Http\Message\StreamFactoryBehavior;

class DiactorosStreamFactorySpec extends ObjectBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/StreamFactory/GuzzleStreamFactorySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use GuzzleHttp\Psr7\Stream;
use PhpSpec\ObjectBehavior;
use spec\Http\Message\StreamFactoryBehavior;

class GuzzleStreamFactorySpec extends ObjectBehavior
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace spec\Http\Message;
namespace spec\Http\Message\StreamFactory;

trait StreamFactoryBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/UriFactory/DiactorosUriFactorySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Psr\Http\Message\UriInterface;
use PhpSpec\ObjectBehavior;
use spec\Http\Message\UriFactoryBehavior;

class DiactorosUriFactorySpec extends ObjectBehavior
{
Expand Down
1 change: 0 additions & 1 deletion spec/UriFactory/GuzzleUriFactorySpec.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

use Psr\Http\Message\UriInterface;
use PhpSpec\ObjectBehavior;
use spec\Http\Message\UriFactoryBehavior;

class GuzzleUriFactorySpec extends ObjectBehavior
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace spec\Http\Message;
namespace spec\Http\Message\UriFactory;

use Psr\Http\Message\UriInterface;

Expand Down