diff --git a/src/SearchConsoleClientFactory.php b/src/SearchConsoleClientFactory.php index 68874b7..c926911 100644 --- a/src/SearchConsoleClientFactory.php +++ b/src/SearchConsoleClientFactory.php @@ -9,7 +9,6 @@ class SearchConsoleClientFactory { - /** * @param array $searchConsoleConfig * @return SearchConsoleClient diff --git a/tests/Unit/PeriodTest.php b/tests/Unit/PeriodTest.php index 497ead3..28bad45 100644 --- a/tests/Unit/PeriodTest.php +++ b/tests/Unit/PeriodTest.php @@ -9,17 +9,6 @@ class PeriodTest extends TestCase { - /** @test */ - public function it_can_create_a_period_for_a_given_amount_of_days() - { - Carbon::setTestNow(Carbon::create(2017, 7, 1)); - - $period = Period::days(7); - - $this->assertSame('2017-06-22', $period->startDate->format('Y-m-d')); - $this->assertSame('2017-06-28', $period->endDate->format('Y-m-d')); - } - /** @test */ public function it_provides_a_create_method() {