本文整理汇总了PHP中Map::find方法的典型用法代码示例。如果您正苦于以下问题:PHP Map::find方法的具体用法?PHP Map::find怎么用?PHP Map::find使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Map
的用法示例。
在下文中一共展示了Map::find方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: maps
public function maps($tournament)
{
$maps = new Collection();
$this->reports($tournament)->get()->each(function ($report) use(&$maps) {
$maps->push(Map::find($report->map));
});
return $maps;
}
示例2: function
if ($tournament == null) {
App::abort(404);
} else {
return $tournament;
}
});
Route::bind('round', function ($key, $route) {
$round = Round::find($key);
if ($round == null) {
App::abort(404);
} else {
return $round;
}
});
Route::bind('map', function ($key, $route) {
$round = Map::find($key);
if ($round == null) {
App::abort(404);
} else {
return $round;
}
});
Route::bind('scenario', function ($key, $route) {
$round = Scenario::find($key);
if ($round == null) {
App::abort(404);
} else {
return $round;
}
});
Route::bind('report', function ($key, $route) {
示例3: deleteIndex
/**
* Remove the specified user from storage.
*
* @param $map
* @internal param $id
* @return Response
*/
public function deleteIndex($map)
{
$id = $map->id;
if (!$map->delete()) {
return Api::json(array('result' => 'error', 'error' => Lang::get('core.delete_error')));
}
$maps = Map::find($id);
return empty($maps) ? Api::json(array('result' => 'success')) : Api::json(array('result' => 'error', 'error' => Lang::get('core.delete_error')));
}