I hereby claim:
- I am jakzal on github.
- I am jakubzalas (https://keybase.io/jakubzalas) on keybase.
- I have a public key ASDymt67mEWq_8pwxEXefRL4POa25z_680ovmggZWKTKHQo
To claim this, I am signing this object:
<?php declare(strict_types=1); | |
use Behat\Mink\Element\NodeElement; | |
use Behat\Mink\Session; | |
use Zalas\PageObject\Annotation\FindBy; | |
use Zalas\PageObject\Annotation\MinkSession; | |
class SearchPage | |
{ | |
/** |
<?php declare(strict_types=1); | |
namespace App\Tests\Doubles; | |
use PHPUnit\Framework\TestCase; | |
class Item | |
{ | |
} |
<?php | |
declare(strict_types=1); | |
namespace Zalas\Injector\Tests\Service; | |
use PHPUnit\Framework\TestCase; | |
use Prophecy\Prophecy\ObjectProphecy; | |
use Psr\Container\ContainerInterface; | |
use Psr\Container\NotFoundExceptionInterface; | |
use Zalas\Injector\PHPUnit\TestCase\ServiceContainerTestCase; |
I hereby claim:
To claim this, I am signing this object:
<?php | |
declare(strict_types=1); | |
namespace Zalas\Test\MarkdownSpec; | |
class DataSet implements \IteratorAggregate | |
{ | |
/** | |
* @var array | |
*/ |
sealed trait Suit | |
sealed case class Hearts() extends Suit { | |
override def toString = "♡" | |
} | |
sealed case class Diamonds() extends Suit { | |
override def toString = "♢" | |
} | |
sealed case class Clubs() extends Suit { | |
override def toString = "♧" | |
} |
<?php | |
declare(strict_types=1); | |
namespace Zalas\PHPUnit\Injector\Symfony\TestCase; | |
use Symfony\Component\DependencyInjection\ResettableContainerInterface; | |
use Symfony\Component\HttpKernel\KernelInterface; | |
/** | |
* Mimics the behaviour of Symfony's KernelTestCase. |
<?php | |
function flat_map(callable $callback, array $collection) { | |
return array_merge([], ...array_map($callback, $collection)); | |
}; |
<?php | |
declare(strict_types=1); | |
namespace Zalas\Tests; | |
use PHPUnit\Framework\TestCase; | |
class ExampleTest extends TestCase | |
{ | |
/** |
<?php | |
namespace Zalas\Infrastructure\Scraper; | |
use OldSound\RabbitMqBundle\RabbitMq\Consumer; | |
use OldSound\RabbitMqBundle\RabbitMq\ConsumerInterface; | |
use OldSound\RabbitMqBundle\RabbitMq\ProducerInterface; | |
use PhpAmqpLib\Connection\AbstractConnection; | |
use PhpAmqpLib\Connection\AMQPLazyConnection; | |
use PhpAmqpLib\Exception\AMQPTimeoutException; |