Skip to content

Commit

Permalink
Merge pull request #10 from RonasIT/dpankratrov/php-7-1-requirements
Browse files Browse the repository at this point in the history
Dpankratrov/php 7 1 requirements
  • Loading branch information
DenTray committed Apr 24, 2019
2 parents e3d7ac1 + 74aed4e commit df3a7ab
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
}
],
"require": {
"php": ">=5.6",
"php": ">=7.1.0",
"laravel/framework": ">=5.3.0",
"minime/annotations": "2.3.1",
"ronasit/laravel-helpers": "1.3.*",
Expand Down
6 changes: 3 additions & 3 deletions src/Tests/AutoDocTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ class AutoDocTestCase extends TestCase
{
protected $docService;

public function setUp()
public function setUp(): void
{
parent::setUp();

Expand All @@ -22,7 +22,7 @@ public function createApplication()
parent::createApplication();
}

public function tearDown()
public function tearDown(): void
{
$currentTestCount = $this->getTestResultObject()->count();
$allTestCount = $this->getTestResultObject()->topTestSuite()->count();
Expand All @@ -41,4 +41,4 @@ public function skipDocumentationCollecting()
{
AutoDocMiddleware::$skipped = true;
}
}
}

0 comments on commit df3a7ab

Please sign in to comment.