PATH:
home
/
lab2454c
/
crypto.keyreum.com
/
vendor
/
laravel
/
framework
/
src
/
Illuminate
/
View
<?php namespace Illuminate\View; class ViewName { /** * Normalize the given view name. * * @param string $name * @return string */ public static function normalize($name) { $delimiter = ViewFinderInterface::HINT_PATH_DELIMITER; if (strpos($name, $delimiter) === false) { return str_replace('/', '.', $name); } [$namespace, $name] = explode($delimiter, $name); return $namespace.$delimiter.str_replace('/', '.', $name); } }
[-] ViewName.php
[edit]
[-] composer.json
[edit]
[+]
..
[-] View.php
[edit]
[-] ComponentAttributeBag.php
[edit]
[-] ViewServiceProvider.php
[edit]
[-] ViewException.php
[edit]
[-] AppendableAttributeValue.php
[edit]
[+]
Middleware
[-] Component.php
[edit]
[-] ViewFinderInterface.php
[edit]
[-] LICENSE.md
[edit]
[-] ComponentSlot.php
[edit]
[-] FileViewFinder.php
[edit]
[+]
Compilers
[+]
Engines
[-] Factory.php
[edit]
[-] DynamicComponent.php
[edit]
[-] AnonymousComponent.php
[edit]
[+]
Concerns
[-] InvokableComponentVariable.php
[edit]