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
// Post: http://codely.tv/screencasts/finder-kata-scala/ | |
// Repo: https://github.com/CodelyTV/incomprehensible-finder-refactoring-kata-scala | |
package tv.codely.finderKata.algorithm | |
import java.util | |
import java.util.ArrayList | |
import scala.collection.JavaConverters._ |
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
// Post: http://codely.tv/screencasts/finder-kata-scala/ | |
// Repo: https://github.com/CodelyTV/incomprehensible-finder-refactoring-kata-scala | |
package tv.codely.finderKata.algorithm | |
import java.util | |
import java.util.ArrayList | |
import scala.collection.JavaConverters._ |
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 CodelyTv\Context\Meetup\Module\Video\Test\PhpUnit; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\Video; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoRepository; | |
use CodelyTv\Context\Meetup\Test\PhpUnit\MeetupContextUnitTestCase; | |
use Mockery\MockInterface; | |
use function CodelyTv\Test\similarTo; |
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 CodelyTv\Context\Meetup\Module\Video\Tests\Behaviour; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\Create\CreateVideoCommandHandler; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\Create\VideoCreator; | |
use CodelyTv\Context\Meetup\Module\Video\Test\PhpUnit\VideoModuleUnitTestCase; | |
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\CreateVideoCommandStub; | |
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoCreatedDomainEventStub; | |
use CodelyTv\Context\Meetup\Module\Video\Test\Stub\VideoIdStub; |
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 CodelyTv\Context\Meetup\Module\Video\Domain\Create; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\Video; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoId; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoRepository; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoTitle; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoUrl; | |
use CodelyTv\Infrastructure\Bus\Event\DomainEventPublisher; |
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 CodelyTv\Context\Meetup\Module\Video\Domain\Create; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoId; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoTitle; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\VideoUrl; | |
use CodelyTv\Shared\Domain\CourseId; | |
final class CreateVideoCommandHandler |
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 CodelyTv\Api\Controller; | |
use CodelyTv\Context\Meetup\Module\Video\Domain\Create\CreateVideoCommand; | |
use CodelyTv\Infrastructure\Bus\Command\CommandBus; | |
use Symfony\Bundle\FrameworkBundle\Controller\Controller; | |
use Symfony\Component\HttpFoundation\Request; | |
use Symfony\Component\HttpFoundation\Response; |
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 AppBundle\Tests\Controller; | |
use AppBundle\Controller\CourseController; | |
use Doctrine\Bundle\DoctrineBundle\Registry; | |
use Doctrine\ORM\AbstractQuery; | |
use Doctrine\ORM\EntityManager; | |
use Doctrine\ORM\QueryBuilder; | |
use PHPUnit_Framework_TestCase; |
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 AppBundle\Controller; | |
use FOS\RestBundle\Controller\FOSRestController; | |
use Symfony\Component\HttpFoundation\Request; | |
final class CourseController extends FOSRestController | |
{ | |
public function getCourseAction(Request $request) | |
{ | |
return $this->getDoctrine() | |
->getEntityManager() |
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 AppBundle\Controller; | |
use FOS\RestBundle\Controller\FOSRestController; | |
use Symfony\Component\HttpFoundation\Request; | |
final class CourseController extends FOSRestController | |
{ | |
public function getCourseAction(Request $request) | |
{ | |
return $this->getDoctrine() | |
->getEntityManager() |