Skip to content

Commit f4627bc

Browse files
committed
LCO: Strategy classes added.
1 parent 37a3e5f commit f4627bc

File tree

3 files changed

+21
-0
lines changed

3 files changed

+21
-0
lines changed
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace Illuminated\Console\Overlapping;
4+
5+
class DatabaseStrategy implements Strategy
6+
{
7+
}

src/Overlapping/FileStrategy.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace Illuminated\Console\Overlapping;
4+
5+
class FileStrategy implements Strategy
6+
{
7+
}

src/Overlapping/Strategy.php

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<?php
2+
3+
namespace Illuminated\Console\Overlapping;
4+
5+
interface Strategy
6+
{
7+
}

0 commit comments

Comments
 (0)