Fix class methods staticity/return value

This commit is contained in:
Hypolite Petovan 2017-12-17 15:29:16 -05:00
부모 916236ce2f
커밋 4b5894817e
3개의 변경된 파일5개의 추가작업 그리고 7개의 파일을 삭제

파일 보기

@ -312,10 +312,8 @@ class App {
*
* @return string
*/
public static function get_basepath() {
if (isset($this)) {
$basepath = $this->basepath;
}
public function get_basepath() {
$basepath = $this->basepath;
if (! $basepath) {
$basepath = Config::get('system', 'basepath');

파일 보기

@ -1094,7 +1094,7 @@ class Diaspora
preg_replace_callback(
$expression,
function ($match) use ($item) {
return self::fetchGuidSub($match, $item);
self::fetchGuidSub($match, $item);
},
$item["body"]
);
@ -1102,7 +1102,7 @@ class Diaspora
preg_replace_callback(
"&\[url=/posts/([^\[\]]*)\](.*)\[\/url\]&Usi",
function ($match) use ($item) {
return self::fetchGuidSub($match, $item);
self::fetchGuidSub($match, $item);
},
$item["body"]
);

파일 보기

@ -32,7 +32,7 @@ class Feed {
*
* @return array In simulation mode it returns the header and the first item
*/
function import($xml, $importer, &$contact, &$hub, $simulate = false) {
public static function import($xml, $importer, &$contact, &$hub, $simulate = false) {
$a = get_app();