Skip to content

Commit 3dce40c

Browse files
authored
Merge pull request #14 from MammatusPHP/add-pod-cronjob-and-statefulset-marker-interfaces
Add Pod, CronJob, and StatefulSet marker interfaces
2 parents e2268a8 + f51e376 commit 3dce40c

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

src/AddOn/CronJob.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Mammatus\Kubernetes\Contracts\AddOn;
6+
7+
interface CronJob extends AbstractAddOn
8+
{
9+
}

src/AddOn/Pod.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Mammatus\Kubernetes\Contracts\AddOn;
6+
7+
interface Pod extends AbstractAddOn
8+
{
9+
}

src/AddOn/StatefulSet.php

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<?php
2+
3+
declare(strict_types=1);
4+
5+
namespace Mammatus\Kubernetes\Contracts\AddOn;
6+
7+
interface StatefulSet extends AbstractAddOn
8+
{
9+
}

0 commit comments

Comments
 (0)