Forgot to run precommit!

This commit is contained in:
flash 2023-01-02 03:24:41 +00:00
parent 3f0504b1fd
commit 05a940667c
6 changed files with 21 additions and 2 deletions

View file

@ -1 +1 @@
0.2301.11953 0.2301.20324

View file

@ -1,8 +1,11 @@
<?php <?php
// Colour.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour; namespace Index\Colour;
use Stringable; use Stringable;
abstract class Colour implements Stringable { abstract class Colour implements Stringable {
public abstract function getRed(): int; public abstract function getRed(): int;
public abstract function getGreen(): int; public abstract function getGreen(): int;

View file

@ -1,4 +1,8 @@
<?php <?php
// ColourHSL.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour; namespace Index\Colour;
class ColourHSL extends Colour { class ColourHSL extends Colour {

View file

@ -1,4 +1,8 @@
<?php <?php
// ColourNamed.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour; namespace Index\Colour;
class ColourNamed extends Colour { class ColourNamed extends Colour {

View file

@ -1,4 +1,8 @@
<?php <?php
// ColourNull.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour; namespace Index\Colour;
class ColourNull extends Colour { class ColourNull extends Colour {

View file

@ -1,4 +1,8 @@
<?php <?php
// ColourRGB.php
// Created: 2023-01-02
// Updated: 2023-01-02
namespace Index\Colour; namespace Index\Colour;
class ColourRGB extends Colour { class ColourRGB extends Colour {