Increased MSI to 65% (for sure this time)

This commit is contained in:
Alejandro Celaya 2018-11-17 19:32:31 +01:00
parent f48f98f4d7
commit b8faa6714a
2 changed files with 3 additions and 3 deletions

View File

@ -82,8 +82,8 @@ class ListShortUrlsCommandTest extends TestCase
$data[] = new ShortUrl('url_' . $i);
}
$this->shortUrlService->listShortUrls(Argument::cetera())->willReturn(new Paginator(new ArrayAdapter($data)))
->shouldBeCalledOnce();
$this->shortUrlService->listShortUrls(1, null, [], null)->willReturn(new Paginator(new ArrayAdapter($data)))
->shouldBeCalledOnce();
$this->commandTester->setInputs(['n']);
$this->commandTester->execute(['command' => 'shortcode:list']);

View File

@ -42,7 +42,7 @@ class ValidationException extends RuntimeException
* @param \Throwable|null $prev
* @return ValidationException
*/
public static function fromArray(array $invalidData, Throwable $prev = null): self
private static function fromArray(array $invalidData, Throwable $prev = null): self
{
return new self(
sprintf(