for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Bludata\Lumen\Tests;
use Faker\Factory;
use Laravel\Lumen\Testing\TestCase;
abstract class BaseTest extends TestCase
{
/**
* Creates the application.
*
* @return \Laravel\Lumen\Application
\Laravel\Lumen\Application|null
This check compares the return type specified in the @return annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.
@return
*/
public function createApplication()
}
public function getFaker($locale = 'pt_BR')
return Factory::create($locale);
This check compares the return type specified in the
@return
annotation of a function or method doc comment with the types returned by the function and raises an issue if they mismatch.