Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php /** * @package Grav\Framework\Collection * * @copyright Copyright (c) 2015 -..
Decoded Output download
<?php
/**
* @package Grav\Framework\Collection
*
* @copyright Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Framework\Collection;
use Doctrine\Common\Collections\Selectable;
/**
* Collection of objects stored into a filesystem.
*
* @package Grav\Framework\Collection
* @template TKey of array-key
* @template T
* @extends CollectionInterface<TKey,T>
* @extends Selectable<TKey,T>
*/
interface FileCollectionInterface extends CollectionInterface, Selectable
{
public const INCLUDE_FILES = 1;
public const INCLUDE_FOLDERS = 2;
public const RECURSIVE = 4;
/**
* @return string
*/
public function getPath();
}
?>
Did this file decode correctly?
Original Code
<?php
/**
* @package Grav\Framework\Collection
*
* @copyright Copyright (c) 2015 - 2024 Trilby Media, LLC. All rights reserved.
* @license MIT License; see LICENSE file for details.
*/
namespace Grav\Framework\Collection;
use Doctrine\Common\Collections\Selectable;
/**
* Collection of objects stored into a filesystem.
*
* @package Grav\Framework\Collection
* @template TKey of array-key
* @template T
* @extends CollectionInterface<TKey,T>
* @extends Selectable<TKey,T>
*/
interface FileCollectionInterface extends CollectionInterface, Selectable
{
public const INCLUDE_FILES = 1;
public const INCLUDE_FOLDERS = 2;
public const RECURSIVE = 4;
/**
* @return string
*/
public function getPath();
}
Function Calls
None |
Stats
MD5 | 0a4259b3bd256d1f2ed476e8340a2401 |
Eval Count | 0 |
Decode Time | 119 ms |