Skip to content

Commit 9f8a0bd

Browse files
committed
add status list interface
1 parent e4bf4b6 commit 9f8a0bd

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

.gitignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
/vendor/*
2+
3+
.idea/

src/components/i18n/PhpMessageSource.php

-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88

99

1010
use Yii;
11-
use yii\helpers\ArrayHelper;
1211
use yii\i18n\PhpMessageSource as BasePhpMessageSource;
1312

1413
class PhpMessageSource extends BasePhpMessageSource

src/interfaces/IStatusList.php

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<?php
2+
/**
3+
* @author Dmytro Karpovych
4+
* @copyright 2015 NRE
5+
*/
6+
7+
namespace nullref\core\interfaces;
8+
9+
10+
interface IStatusList
11+
{
12+
public function getList();
13+
}

0 commit comments

Comments
 (0)