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 declare(strict_types=1); /* * This file is a part of Sculpin. * * (c) Dragonfly..
Decoded Output download
<?php
declare(strict_types=1);
/*
* This file is a part of Sculpin.
*
* (c) Dragonfly Development Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sculpin\Core\Output;
use Sculpin\Core\Permalink\PermalinkInterface;
/**
* @author Beau Simensen <[email protected]>
*/
interface OutputInterface
{
/**
* Unique ID
*/
public function outputId(): string;
/**
* Pathname (relative)
*/
public function pathname(): string;
/**
* Suggested permalink
*/
public function permalink(): PermalinkInterface;
/**
* Whether this output has a file reference.
*/
public function hasFileReference(): bool;
/**
* File reference. (if hasFileReference)
*/
public function file() :?\SplFileInfo;
/**
* Formatted content (if not hasFileReference)
*/
public function formattedContent(): ?string;
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
/*
* This file is a part of Sculpin.
*
* (c) Dragonfly Development Inc.
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sculpin\Core\Output;
use Sculpin\Core\Permalink\PermalinkInterface;
/**
* @author Beau Simensen <[email protected]>
*/
interface OutputInterface
{
/**
* Unique ID
*/
public function outputId(): string;
/**
* Pathname (relative)
*/
public function pathname(): string;
/**
* Suggested permalink
*/
public function permalink(): PermalinkInterface;
/**
* Whether this output has a file reference.
*/
public function hasFileReference(): bool;
/**
* File reference. (if hasFileReference)
*/
public function file() :?\SplFileInfo;
/**
* Formatted content (if not hasFileReference)
*/
public function formattedContent(): ?string;
}
Function Calls
None |
Stats
MD5 | bfb7850e59c9e39f9d7b52f423b9a7f0 |
Eval Count | 0 |
Decode Time | 92 ms |