1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-04 04:40:05 +08:00
SpaceVim/bundle/phpcomplete.vim-vim7/tests/fixtures/CompleteGeneral/functions.php

17 lines
581 B
PHP
Raw Normal View History

<?php
class CommonFoo {
public function common_public_method($foo) { }
private function common_private_method($foo) { }
protected function common_protected_method($foo) { }
public static function common_public_static_method($foo) { }
static public function common_static_public_method($foo) { }
private static function common_private_static_method($foo) { }
protected static function common_protected_static_method($foo) { }
}
trait CommonTrait {}
function common_plain_old_function(){}
function common_plain_old_function_with_arguments($a, $b=''){}