Skip to content

Commit 623765c

Browse files
committed
Add Tag OOP
1 parent d1265f8 commit 623765c

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/Tag/Tag.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,14 @@ enum Tag: string implements EnumWithTitle
99
{
1010
case AGILE = 'Agile';
1111
case PHP = 'Php';
12+
case OOP = 'Object-oriented Programming';
1213

1314
public function getTitle(): string
1415
{
1516
return match ($this) {
1617
self::AGILE => 'Agile',
1718
self::PHP => 'PHP',
19+
self::OOP => 'Object-oriented Programming',
1820
};
1921
}
2022
}

0 commit comments

Comments
 (0)