This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
server { | |
listen 8080; | |
server_name example.dev www.example.dev; | |
location / { | |
root /Users/Cobby/Sites/Example; | |
if ($host = 'www.example.dev' ) { | |
rewrite ^/(.*)$ http://example.dev:8080/$1 permanent; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Doctrine\ODM\MongoDB\Tests\Functional; | |
use Doctrine\Common\Collections\ArrayCollection, | |
Documents\Functional\EmbeddedTestLevel0, | |
Documents\Functional\EmbeddedTestLevel1, | |
Documents\Functional\EmbeddedTestLevel2; | |
class MoveEmbeddedDocuments extends \Doctrine\ODM\MongoDB\Tests\BaseTest |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Doctrine\ODM\MongoDB\Tests\Functional\Ticket; | |
use Doctrine\Common\Collections\ArrayCollection, | |
Documents\Functional\EmbeddedTestLevel0, | |
Documents\Functional\EmbeddedTestLevel1, | |
Documents\Functional\EmbeddedTestLevel2; | |
class MODM140Test extends \Doctrine\ODM\MongoDB\Tests\BaseTest |
NewerOlder