- Fixed a missing cast in two files

This commit is contained in:
Dave M. 2026-07-16 17:38:58 -04:00
parent 8323c6218e
commit 502795d688
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@
{% php $import = include($file) %} {% php $import = include($file) %}
<div class="grid"> <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"> <div class="col">
{{ $import['namespace'] }} {{ $import['namespace'] }}

View File

@ -18,7 +18,7 @@
<article class="picea"> <article class="picea">
{% foreach $folder as $file %} {% foreach $folder as $file %}
<div class="grid"> <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> <div>
{#<a target="_blank" class="btn-red" href=""> {#<a target="_blank" class="btn-red" href="">
Voir Voir