Skip to content

Commit e6090cd

Browse files
committed
Simplifying phpdoc.
1 parent 99f6243 commit e6090cd

File tree

17 files changed

+1
-33
lines changed

17 files changed

+1
-33
lines changed

src/Training/Easy/ASCIIArt/ASCIIArt.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class ASCIIArt implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
fscanf($stdin, "%d", $L);

src/Training/Easy/Defibrillators/Defibrillators.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class Defibrillators implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
fscanf($stdin, "%s", $LON);

src/Training/Easy/HorseRacingDuals/HorseRacingDuals.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class HorseRacingDuals implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
fscanf($stdin, "%d", $N);

src/Training/Easy/MIMEType/MIMEType.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class MIMEType implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
// $N: Number of elements which make up the association table.

src/Training/Easy/Temperatures/Temperatures.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class Temperatures implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
// $n: the number of temperatures to analyse

src/Training/Easy/Unary/Unary.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class Unary implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
$MESSAGE = stream_get_line($stdin, 100 + 1, "\n");

src/Training/Medium/MayanCalculation/MayanCalculation.dist

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,6 @@ use CyrilVerloop\Codingame\Puzzle;
1111
*/
1212
class MayanCalculation implements Puzzle
1313
{
14-
// Methods :
15-
1614
public function execute($stdin): void
1715
{
1816
fscanf($stdin, "%d %d", $L, $H);

src/Training/Medium/TelephoneNumbers/TelephoneNumbers.dist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ namespace CyrilVerloop\Codingame\Training\Medium\TelephoneNumbers;
77
use CyrilVerloop\Codingame\Puzzle;
88

99
/**
10-
* The "Stock Exchange Losses" puzzle.
10+
* The "Telephone numbers" puzzle.
1111
*/
1212
class TelephoneNumbers implements Puzzle
1313
{

tests/Training/Easy/ASCIIArt/ASCIIArtTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*/
1616
final class ASCIIArtTest extends PuzzleTest
1717
{
18-
// Methods :
19-
2018
public function setUp(): void
2119
{
2220
$this->puzzle = new ASCIIArt();

tests/Training/Easy/Defibrillators/DefibrillatorsTest.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,6 @@
1515
*/
1616
final class DefibrillatorsTest extends PuzzleTest
1717
{
18-
// Methods :
19-
2018
public function setUp(): void
2119
{
2220
$this->puzzle = new Defibrillators();

0 commit comments

Comments
 (0)