/**
  * @SWG\Get(
  *     path="/stores/{store}",
  *     tags={"Store"},
  *     operationId="getStore",
  *     summary="Buscar tienda",
  *     @SWG\Parameter(
  *         name="store",
  *         in="path",
  *         type="integer",
  *         required=true
  *     ),
  *     @SWG\Response(
  *          response="200",
  *          description="OK",
  *         @SWG\Schema(ref="#/definitions/store")
  *     )
  * )
  */
 public function findAction($store)
 {
     $store = Store::findFirst($store);
     return $this->modelsResponse($store);
 }