Browse Source

文字列内の変数展開を修正

develop
sosuke.iwabuchi 2 years ago
parent
commit
66cadefc03
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      app/Util/Custom/HelloTechno/API.php

+ 2
- 2
app/Util/Custom/HelloTechno/API.php View File

@@ -188,7 +188,7 @@ class API
} }
return data_get($data, static::FIELD_DATA, []); return data_get($data, static::FIELD_DATA, []);
} catch (Exception $e) { } catch (Exception $e) {
Log::error("HelloTechno API エラー URL:${url}]");
Log::error("HelloTechno API エラー URL:{$url}]");
throw $e; throw $e;
} }
} }
@@ -212,7 +212,7 @@ class API
} }
return data_get($data, static::FIELD_DATA, []); return data_get($data, static::FIELD_DATA, []);
} catch (Exception $e) { } catch (Exception $e) {
Log::error("HelloTechno API エラー URL:${url}]");
Log::error("HelloTechno API エラー URL:{$url}]");
throw $e; throw $e;
} }
} }


Loading…
Cancel
Save