记录Model A
中访问的Model B
的使用情况的正确方法是什么?在这种情况下,我想记录Excel
。
class Preview extends Eloquent {
/**
* Push file Data to Session
*
* @ ...
*/
public static function push() {
Session::put('data', Excel::get(self::file));
}
}
答案 0 :(得分:3)
您可以使用@see annotation指向另一个类:
class Preview extends Eloquent {
/**
* Push file Data to Session
*
* @see Excel::get()
* @see Session
* @see http://php.net/manual/en/features.sessions.php
*/
public static function push() {
Session::put('data', Excel::get(self::file));
}
}
生成html文档时,它应该创建一个锚标记,链接到Excel类的get方法的文档,即Session类。和php.net手册