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 namespace BookStack\App; /** * Assigned to models that can have slugs. * Must ha..

Decoded Output download

<?php

namespace BookStack\App;

/**
 * Assigned to models that can have slugs.
 * Must have the below properties.
 *
 * @property int    $id
 * @property string $name
 */
interface Sluggable
{
    /**
     * Regenerate the slug for this model.
     */
    public function refreshSlug(): string;
}
 ?>

Did this file decode correctly?

Original Code

<?php

namespace BookStack\App;

/**
 * Assigned to models that can have slugs.
 * Must have the below properties.
 *
 * @property int    $id
 * @property string $name
 */
interface Sluggable
{
    /**
     * Regenerate the slug for this model.
     */
    public function refreshSlug(): string;
}

Function Calls

None

Variables

None

Stats

MD5 3c59a480ba91bfcadb266efc27240279
Eval Count 0
Decode Time 144 ms