possible-wrong-parameter-undefinedpossible-wrong-parameter-undefined当一个方法以错误的类型调用参数时引发: public function some(){ return this->sum("a string", "another"); // wrong parameters passed}public function sum(int a, int b){ return a + b;}