$replace = [
'https://odl.paris.cubedesigners.com/front/' => './',
'https://cube.odile.space/front/' => './',
+ 'https://odl.paris.cubedesigners.com/storage/' => './storage/',
+ 'https://cube.odile.space/storage/' => './storage/',
'https://odl.paris.cubedesigners.com/' => './',
'https://cube.odile.space/' => './',
'/front/' => './',
'\/storage' => '.\/storage',
'/storage/' => './storage/',
];
- $html = str_replace(array_keys($replace), array_values($replace), $html);
-
-
- return $html;
+ return str_replace(array_keys($replace), array_values($replace), $html);
}