Compare commits

...

1 Commits

Author SHA1 Message Date
502795d688 - Fixed a missing cast in two files 2026-07-16 17:38:58 -04:00
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
{% php $import = include($file) %}
<div class="grid">
<strong class="col route-name">{{ substr($file, strlen($path)) }}</strong>
<strong class="col route-name">{{ substr((string) $file, strlen($path)) }}</strong>
<div class="col">
{{ $import['namespace'] }}

View File

@ -18,7 +18,7 @@
<article class="picea">
{% foreach $folder as $file %}
<div class="grid">
<strong class="col route-name">{{ substr($file, strlen($path)) }}</strong>
<strong class="col route-name">{{ substr((string) $file, strlen($path)) }}</strong>
<div>
{#<a target="_blank" class="btn-red" href="">
Voir