Skip to content

Commit

Permalink
Fix code styles
Browse files Browse the repository at this point in the history
  • Loading branch information
odan authored and odan committed Oct 24, 2023
1 parent ea55cc1 commit ac94c9c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions src/ChronosClock.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php
declare(strict_types=1);

namespace Cake\Chronos;

Expand All @@ -25,10 +26,10 @@ class ChronosClock implements ClockInterface
/**
* Returns the current time as a Chronos Object
*
* @return Chronos The current time
* @return \Cake\Chronos\Chronos The current time
*/
public function now(): DateTimeImmutable
{
return Chronos::now();
}
}
}
1 change: 0 additions & 1 deletion tests/TestCase/ChronosClockTest.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
<?php

declare(strict_types=1);

/**
Expand Down

0 comments on commit ac94c9c

Please sign in to comment.