use class, function 커맨드를 php8에서 사용할 수 있도록 수정
- \ 토큰 해석 문제
- VSCode 자동 완성 문제로 use function \sammo\{ 를 모두 해제
This commit is contained in:
+4
-4
@@ -7,7 +7,7 @@
|
|||||||
*/
|
*/
|
||||||
return [
|
return [
|
||||||
// Supported values: `'5.6'`, `'7.0'`, `'7.1'`, `'7.2'`, `'7.3'`,
|
// Supported values: `'5.6'`, `'7.0'`, `'7.1'`, `'7.2'`, `'7.3'`,
|
||||||
// `'7.4'`, `null`.
|
// `'7.4'`, `'8.0'`, `'8.1'`, `null`.
|
||||||
// If this is set to `null`,
|
// If this is set to `null`,
|
||||||
// then Phan assumes the PHP version which is closest to the minor version
|
// then Phan assumes the PHP version which is closest to the minor version
|
||||||
// of the php executable used to execute Phan.
|
// of the php executable used to execute Phan.
|
||||||
@@ -15,9 +15,9 @@ return [
|
|||||||
// Note that the **only** effect of choosing `'5.6'` is to infer
|
// Note that the **only** effect of choosing `'5.6'` is to infer
|
||||||
// that functions removed in php 7.0 exist.
|
// that functions removed in php 7.0 exist.
|
||||||
// (See `backward_compatibility_checks` for additional options)
|
// (See `backward_compatibility_checks` for additional options)
|
||||||
"target_php_version" => '7.3',
|
"target_php_version" => '7.4',
|
||||||
'backward_compatibility_checks ' => false,
|
'backward_compatibility_checks ' => true,
|
||||||
'minimum_severity'=>\Phan\Issue::SEVERITY_NORMAL,
|
'minimum_severity'=>\Phan\Issue::SEVERITY_CRITICAL,
|
||||||
|
|
||||||
'file_list' => [
|
'file_list' => [
|
||||||
'f_config/config.php',
|
'f_config/config.php',
|
||||||
|
|||||||
+1
-1
@@ -8,7 +8,7 @@
|
|||||||
],
|
],
|
||||||
"config": {
|
"config": {
|
||||||
"platform": {
|
"platform": {
|
||||||
"php": "7.3"
|
"php": "7.4"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"require": {
|
"require": {
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace kakao;
|
namespace kakao;
|
||||||
|
|
||||||
|
// @suppress PhanRedefineClass
|
||||||
class KakaoKey{
|
class KakaoKey{
|
||||||
const REST_KEY = '_tK_REST_API_KEY_';
|
const REST_KEY = '_tK_REST_API_KEY_';
|
||||||
const ADMIN_KEY = '_tK_ADMIN_KEY_';
|
const ADMIN_KEY = '_tK_ADMIN_KEY_';
|
||||||
|
|||||||
@@ -32,8 +32,8 @@ abstract class BaseCommand{
|
|||||||
|
|
||||||
/** @var \sammo\General */
|
/** @var \sammo\General */
|
||||||
protected $destGeneralObj = null;
|
protected $destGeneralObj = null;
|
||||||
protected $destCity = null;
|
protected ?array $destCity = null;
|
||||||
protected $destNation = null;
|
protected ?array $destNation = null;
|
||||||
|
|
||||||
protected $cachedPermissionToReserve = false;
|
protected $cachedPermissionToReserve = false;
|
||||||
protected $cachedMinConditionMet = false;
|
protected $cachedMinConditionMet = false;
|
||||||
|
|||||||
@@ -2,23 +2,19 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\printCitiesBasedOnDistance;
|
||||||
printCitiesBasedOnDistance
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,24 +2,19 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\Json;
|
||||||
Json
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function\sammo\{
|
use function \sammo\getAllNationStaticInfo;
|
||||||
tryUniqueItemLottery,
|
|
||||||
getAllNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,9 +11,7 @@ use \sammo\{
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -12,10 +12,7 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery,
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,11 +10,8 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\getNationStaticInfo;
|
||||||
use function \sammo\{
|
use function \sammo\tryUniqueItemLottery;
|
||||||
getNationStaticInfo,
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,10 +10,8 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\getNationStaticInfo;
|
||||||
use function \sammo\{
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,9 +11,8 @@ use \sammo\{
|
|||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getNationStaticInfo;
|
||||||
tryUniqueItemLottery
|
use function \sammo\tryUniqueItemLottery;
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -12,15 +12,9 @@ use \sammo\{
|
|||||||
ScoutMessage
|
ScoutMessage
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\getNationStaticInfo;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\newColor;
|
||||||
CriticalScoreEx,
|
|
||||||
tryUniqueItemLottery,
|
|
||||||
getAllNationStaticInfo,
|
|
||||||
getNationStaticInfo,
|
|
||||||
newColor
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -13,14 +13,8 @@ use \sammo\{
|
|||||||
ScoutMessage
|
ScoutMessage
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\getNationStaticInfo;
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
tryUniqueItemLottery,
|
|
||||||
getAllNationStaticInfo,
|
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,13 +11,6 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|
||||||
|
|||||||
@@ -1,17 +1,19 @@
|
|||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use \sammo\{
|
use \sammo\DB;
|
||||||
DB, Util, JosaUtil,
|
use \sammo\Util;
|
||||||
General,
|
use \sammo\JosaUtil;
|
||||||
ActionLogger,
|
use \sammo\General;
|
||||||
GameConst, GameUnitConst,
|
use \sammo\ActionLogger;
|
||||||
LastTurn,
|
use \sammo\GameConst;
|
||||||
Command
|
use \sammo\GameUnitConst;
|
||||||
};
|
use \sammo\LastTurn;
|
||||||
|
use \sammo\Command;
|
||||||
|
|
||||||
|
class che_모병 extends che_징병
|
||||||
class che_모병 extends che_징병{
|
{
|
||||||
static protected $actionName = '모병';
|
static protected $actionName = '모병';
|
||||||
static protected $costOffset = 2;
|
static protected $costOffset = 2;
|
||||||
|
|
||||||
@@ -25,8 +27,8 @@ class che_모병 extends che_징병{
|
|||||||
static::$defaultAtmos = GameConst::$defaultAtmosHigh;
|
static::$defaultAtmos = GameConst::$defaultAtmosHigh;
|
||||||
}
|
}
|
||||||
|
|
||||||
public function getCommandDetailTitle():string{
|
public function getCommandDetailTitle(): string
|
||||||
|
{
|
||||||
return "{$this->getName()}(통솔경험, 자금×2)";
|
return "{$this->getName()}(통솔경험, 자금×2)";
|
||||||
}
|
}
|
||||||
|
}
|
||||||
}
|
|
||||||
|
|||||||
@@ -11,12 +11,8 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,11 +10,6 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
|
|||||||
@@ -10,10 +10,7 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,13 +11,11 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\updateMaxDomesticCritical;
|
||||||
updateMaxDomesticCritical
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -1,13 +1,14 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use \sammo\{
|
use \sammo\DB;
|
||||||
DB, Util, JosaUtil,
|
use \sammo\Util;
|
||||||
General,
|
use \sammo\JosaUtil;
|
||||||
ActionLogger,
|
use \sammo\General;
|
||||||
GameConst, GameUnitConst,
|
use \sammo\ActionLogger;
|
||||||
Command
|
use \sammo\GameConst;
|
||||||
};
|
use \sammo\GameUnitConst;
|
||||||
|
use \sammo\Command;
|
||||||
|
|
||||||
class che_선동 extends che_화계{
|
class che_선동 extends che_화계{
|
||||||
static protected $actionName = '선동';
|
static protected $actionName = '선동';
|
||||||
|
|||||||
@@ -2,25 +2,20 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
DummyGeneral,
|
use \sammo\GameConst;
|
||||||
ActionLogger,
|
use \sammo\GameUnitConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
GameUnitConst,
|
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function\sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function\sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function\sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function\sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,11 +10,6 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|
||||||
|
|||||||
@@ -2,28 +2,23 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\Session;
|
||||||
Session,
|
use \sammo\KVStorage;
|
||||||
KVStorage,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\ServConfig;
|
||||||
ServConfig
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\getDexCall;
|
||||||
use function\sammo\{
|
use function \sammo\getTechCall;
|
||||||
getDexCall,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
getTechCall,
|
use function \sammo\getTechAbil;
|
||||||
tryUniqueItemLottery,
|
|
||||||
getTechAbil
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
@@ -107,7 +102,7 @@ class che_숙련전환 extends Command\GeneralCommand
|
|||||||
$this->srcArmTypeName = GameUnitConst::allType()[$this->srcArmType];
|
$this->srcArmTypeName = GameUnitConst::allType()[$this->srcArmType];
|
||||||
$this->destArmType = $this->arg['destArmType'];
|
$this->destArmType = $this->arg['destArmType'];
|
||||||
$this->destArmTypeName = GameUnitConst::allType()[$this->destArmType];
|
$this->destArmTypeName = GameUnitConst::allType()[$this->destArmType];
|
||||||
|
|
||||||
[$reqGold, $reqRice] = $this->getCost();
|
[$reqGold, $reqRice] = $this->getCost();
|
||||||
|
|
||||||
$this->fullConditionConstraints = [
|
$this->fullConditionConstraints = [
|
||||||
|
|||||||
@@ -10,11 +10,6 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|
||||||
|
|||||||
@@ -2,23 +2,18 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function\sammo\{
|
use function \sammo\printCitiesBasedOnDistance;
|
||||||
tryUniqueItemLottery,
|
|
||||||
printCitiesBasedOnDistance
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,26 +2,22 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\pickGeneralFromPool;
|
||||||
pickGeneralFromPool,
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -12,12 +12,9 @@ use \sammo\{
|
|||||||
KVStorage
|
KVStorage
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
use function \sammo\getInvitationList;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\getNationStaticInfo;
|
||||||
getInvitationList,
|
|
||||||
getNationStaticInfo,
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -12,11 +12,7 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\buildItemClass;
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery,
|
|
||||||
buildItemClass
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -12,13 +12,10 @@ use \sammo\{
|
|||||||
KVStorage
|
KVStorage
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\getColoredName;
|
||||||
use function \sammo\{
|
use function \sammo\tryUniqueItemLottery;
|
||||||
getColoredName,
|
use function \sammo\getInvitationList;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\getNationStaticInfo;
|
||||||
getInvitationList,
|
|
||||||
getNationStaticInfo,
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,10 +11,8 @@ use \sammo\{
|
|||||||
MustNotBeReachedException
|
MustNotBeReachedException
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
use function \sammo\getTechCost;
|
||||||
tryUniqueItemLottery, getTechCost
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,10 +10,7 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,13 +11,11 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\updateMaxDomesticCritical;
|
||||||
updateMaxDomesticCritical
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -11,13 +11,11 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\updateMaxDomesticCritical;
|
||||||
updateMaxDomesticCritical
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,25 +2,21 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,10 +10,7 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,27 +2,22 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\Session;
|
||||||
Session,
|
use \sammo\KVStorage;
|
||||||
KVStorage,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\ServConfig;
|
||||||
ServConfig
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\getTechCall;
|
||||||
use function\sammo\{
|
use function \sammo\tryUniqueItemLottery;
|
||||||
getTechCall,
|
use function \sammo\getTechAbil;
|
||||||
tryUniqueItemLottery,
|
|
||||||
getTechAbil
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,25 +2,20 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\Json;
|
||||||
Json
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function\sammo\{
|
use function \sammo\searchDistance;
|
||||||
tryUniqueItemLottery,
|
use function \sammo\printCitiesBasedOnDistance;
|
||||||
searchDistance,
|
|
||||||
printCitiesBasedOnDistance
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,30 +2,23 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function\sammo\{
|
use function \sammo\processWar;
|
||||||
tryUniqueItemLottery,
|
|
||||||
processWar
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class che_출병 extends Command\GeneralCommand
|
class che_출병 extends Command\GeneralCommand
|
||||||
{
|
{
|
||||||
static protected $actionName = '출병';
|
static protected $actionName = '출병';
|
||||||
|
|||||||
@@ -10,11 +10,6 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\CityConst;
|
use sammo\CityConst;
|
||||||
|
|||||||
@@ -2,24 +2,20 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,23 +2,18 @@
|
|||||||
|
|
||||||
namespace sammo\Command\General;
|
namespace sammo\Command\General;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
|
use function \sammo\searchDistance;
|
||||||
use function\sammo\{
|
use function \sammo\printCitiesBasedOnDistance;
|
||||||
searchDistance,
|
|
||||||
printCitiesBasedOnDistance
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -10,10 +10,7 @@ use \sammo\{
|
|||||||
Command
|
Command
|
||||||
};
|
};
|
||||||
|
|
||||||
|
use function \sammo\tryUniqueItemLottery;
|
||||||
use function \sammo\{
|
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -15,14 +15,6 @@ use \sammo\{
|
|||||||
CityHelper
|
CityHelper
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
GetImageURL,
|
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
|
|||||||
@@ -2,32 +2,28 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\CityConst;
|
||||||
CityConst,
|
use \sammo\Json;
|
||||||
Json,
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
use function \sammo\GetNationColors;
|
||||||
GetNationColors,
|
use function \sammo\newColor;
|
||||||
newColor,
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,30 +2,26 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\Json;
|
||||||
Json,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\CityConst;
|
||||||
CityConst
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,29 +2,25 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,27 +2,23 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\Message;
|
||||||
Message
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -13,12 +13,7 @@ use \sammo\{
|
|||||||
TimeUtil
|
TimeUtil
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\cutTurn;
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
cutTurn
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -14,14 +14,6 @@ use \sammo\{
|
|||||||
CityConst
|
CityConst
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
GetImageURL,
|
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
|
|||||||
@@ -2,30 +2,26 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\DiplomaticMessage;
|
||||||
DiplomaticMessage,
|
use \sammo\Message;
|
||||||
Message,
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\GetImageURL;
|
||||||
getNationStaticInfo,
|
use function \sammo\getNationStaticInfo;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,30 +2,26 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\DiplomaticMessage;
|
||||||
DiplomaticMessage,
|
use \sammo\Message;
|
||||||
Message,
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -14,14 +14,9 @@ use \sammo\{
|
|||||||
Message,
|
Message,
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\getNationStaticInfo;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\GetImageURL;
|
||||||
CriticalScoreEx,
|
|
||||||
getAllNationStaticInfo,
|
|
||||||
getNationStaticInfo,
|
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,29 +2,25 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -14,13 +14,7 @@ use \sammo\{
|
|||||||
CityConst
|
CityConst
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getNationStaticInfo;
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
GetImageURL,
|
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,25 +2,21 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\KVStorage;
|
||||||
KVStorage
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\tryUniqueItemLottery;
|
||||||
tryUniqueItemLottery
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,29 +2,25 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\{
|
||||||
DB,
|
DB,
|
||||||
Util,
|
Util,
|
||||||
JosaUtil,
|
JosaUtil,
|
||||||
@@ -18,14 +18,12 @@ use\sammo\{
|
|||||||
Message,
|
Message,
|
||||||
};
|
};
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getAllNationStaticInfo,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -14,14 +14,9 @@ use \sammo\{
|
|||||||
Message,
|
Message,
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\getNationStaticInfo;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\GetImageURL;
|
||||||
CriticalScoreEx,
|
|
||||||
getAllNationStaticInfo,
|
|
||||||
getNationStaticInfo,
|
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -14,14 +14,6 @@ use \sammo\{
|
|||||||
CityConst
|
CityConst
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
GetImageURL,
|
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
|
|||||||
@@ -2,29 +2,25 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\CityConst;
|
||||||
CityConst
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -15,14 +15,6 @@ use \sammo\{
|
|||||||
CityInitialDetail
|
CityInitialDetail
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
GetImageURL,
|
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
|
|||||||
@@ -2,24 +2,20 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -13,15 +13,9 @@ use \sammo\{
|
|||||||
Message, MessageTarget
|
Message, MessageTarget
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
use function \sammo\buildNationCommandClass;
|
||||||
buildNationCommandClass,
|
use function \sammo\getAllNationStaticInfo;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\getNationStaticInfo;
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
getAllNationStaticInfo,
|
|
||||||
getNationStaticInfo,
|
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -13,13 +13,6 @@ use \sammo\{
|
|||||||
Message
|
Message
|
||||||
};
|
};
|
||||||
|
|
||||||
use function \sammo\{
|
|
||||||
getDomesticExpLevelBonus,
|
|
||||||
CriticalRatioDomestic,
|
|
||||||
CriticalScoreEx,
|
|
||||||
GetImageURL
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
use sammo\Event\Action;
|
use sammo\Event\Action;
|
||||||
|
|||||||
@@ -2,29 +2,25 @@
|
|||||||
|
|
||||||
namespace sammo\Command\Nation;
|
namespace sammo\Command\Nation;
|
||||||
|
|
||||||
use\sammo\{
|
use \sammo\DB;
|
||||||
DB,
|
use \sammo\Util;
|
||||||
Util,
|
use \sammo\JosaUtil;
|
||||||
JosaUtil,
|
use \sammo\General;
|
||||||
General,
|
use \sammo\DummyGeneral;
|
||||||
DummyGeneral,
|
use \sammo\ActionLogger;
|
||||||
ActionLogger,
|
use \sammo\GameConst;
|
||||||
GameConst,
|
use \sammo\LastTurn;
|
||||||
LastTurn,
|
use \sammo\GameUnitConst;
|
||||||
GameUnitConst,
|
use \sammo\Command;
|
||||||
Command,
|
use \sammo\MessageTarget;
|
||||||
MessageTarget,
|
use \sammo\Message;
|
||||||
Message,
|
use \sammo\CityConst;
|
||||||
CityConst
|
|
||||||
};
|
|
||||||
|
|
||||||
use function\sammo\{
|
use function \sammo\getDomesticExpLevelBonus;
|
||||||
getDomesticExpLevelBonus,
|
use function \sammo\CriticalRatioDomestic;
|
||||||
CriticalRatioDomestic,
|
use function \sammo\CriticalScoreEx;
|
||||||
CriticalScoreEx,
|
use function \sammo\GetImageURL;
|
||||||
GetImageURL,
|
use function \sammo\getNationStaticInfo;
|
||||||
getNationStaticInfo
|
|
||||||
};
|
|
||||||
|
|
||||||
use \sammo\Constraint\Constraint;
|
use \sammo\Constraint\Constraint;
|
||||||
use \sammo\Constraint\ConstraintHelper;
|
use \sammo\Constraint\ConstraintHelper;
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
namespace kakao;
|
namespace kakao;
|
||||||
|
|
||||||
if (class_exists('\\kakao\\KakaoKey') === false) {
|
if (class_exists('\\kakao\\KakaoKey') === false) {
|
||||||
/** @suppress PhanRedefineClass */
|
// @suppress PhanRedefineClass
|
||||||
class KakaoKey
|
class KakaoKey
|
||||||
{
|
{
|
||||||
const REST_KEY = '';
|
const REST_KEY = '';
|
||||||
|
|||||||
Reference in New Issue
Block a user