This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Wix\BaseBundle\Instance; | |
/** | |
* A class that represents a decoded instance and provides information on that instance. | |
*/ | |
class Instance | |
{ | |
/** |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Wix\BaseBundle\Instance; | |
use Wix\BaseBundle\Exception\InvalidInstanceException; | |
use Wix\BaseBundle\Exception\MissingInstanceException; | |
/** | |
* A service that decodes Wix instances. It has one public method: parse. It accepts a Wix instance and returns an | |
* Instance object that provides information about the decoded instance. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (isset($_GET['hi'])) { | |
echo 'hi'; | |
} | |
?> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
if (isset($_GET['hi'])) { | |
echo 'hi'; | |
} | |
?> |