불필요한 autoload 제거
namespace 누락한 파일 수정
This commit is contained in:
@@ -1,8 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace sammo;
|
namespace sammo;
|
||||||
|
|
||||||
require(__dir__.'/../vendor/autoload.php');
|
|
||||||
|
|
||||||
function CustomHeader() {
|
function CustomHeader() {
|
||||||
//xxx: CustomHeader를 제거하기 전까진 유지
|
//xxx: CustomHeader를 제거하기 전까진 유지
|
||||||
WebUtil::setHeaderNoCache();
|
WebUtil::setHeaderNoCache();
|
||||||
|
|||||||
@@ -3,7 +3,6 @@ namespace sammo;
|
|||||||
|
|
||||||
require_once('_common.php');
|
require_once('_common.php');
|
||||||
require('lib.join.php');
|
require('lib.join.php');
|
||||||
require('kakao.php');
|
|
||||||
|
|
||||||
use \kakao\Kakao_REST_API_Helper as Kakao_REST_API_Helper;
|
use \kakao\Kakao_REST_API_Helper as Kakao_REST_API_Helper;
|
||||||
|
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
require(__dir__.'/../vendor/autoload.php');
|
namespace sammo;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function checkScoutAvailable($messageInfo, $general, $srcGeneral, $startyear, $year){
|
function checkScoutAvailable($messageInfo, $general, $srcGeneral, $startyear, $year){
|
||||||
$nationID = $messageInfo['src']['nationID'];
|
$nationID = $messageInfo['src']['nationID'];
|
||||||
|
|||||||
@@ -1,10 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
namespace sammo;
|
namespace sammo;
|
||||||
|
|
||||||
require(__dir__.'/../vendor/autoload.php');
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
function getHistory($count, $year, $month, $isFirst=0) {
|
function getHistory($count, $year, $month, $isFirst=0) {
|
||||||
$fp = @fopen("logs/_history.txt", "r");
|
$fp = @fopen("logs/_history.txt", "r");
|
||||||
@fseek($fp, -$count*300, SEEK_END);
|
@fseek($fp, -$count*300, SEEK_END);
|
||||||
|
|||||||
@@ -1,7 +1,5 @@
|
|||||||
<?php
|
<?php
|
||||||
require(__dir__.'/../vendor/autoload.php');
|
namespace sammo;
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class Message{
|
class Message{
|
||||||
//기본 정보
|
//기본 정보
|
||||||
|
|||||||
Reference in New Issue
Block a user