Skip to content

Instantly share code, notes, and snippets.

@greydnls
Created September 4, 2015 14:30
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save greydnls/88e563e3c05239a78750 to your computer and use it in GitHub Desktop.
Save greydnls/88e563e3c05239a78750 to your computer and use it in GitHub Desktop.
PHPSpec template php5
<?php
namespace %namespace%;
use PhpSpec\ObjectBehavior;
use Prophecy\Argument;
class %name% extends ObjectBehavior
{
function it_is_initializable()
{
$this->shouldHaveType(\%subject%::class);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment