for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Tests\NeedleProject\LaravelRabbitMq\Stubs;
use NeedleProject\LaravelRabbitMq\Entity\ExchangeEntity;
class ExchangeEntityDetailsStub extends ExchangeEntity
{
public function getAttributes()
return $this->attributes;
}
public function __call($methodName, $arguments)
return $this->$methodName;