3v4l.org

run code in 300+ PHP versions simultaneously
<?php namespace Toolset\ChangeSet; /** * Interface Change * * Represents any change to be made to a Layer. A Change resides in a ChangeSet which is used by the SwfEngineClient to * loop around any potential changes and call isValid() on them before using getChanges() to create a valid request * * @package ChangeSet */ interface Change { /** * The object implementing this method has the responsibility of validating it's own data * * @return boolean */ public function isValid(); /** * Each change MUST have an id - if it doesn't, there's no way to keep track of unique changes * * @return mixed */ public function getId(); /** * This method must return an array of the strings to be sent in the request to the swf engine * * @return array */ public function getRequestFields(); /** * {@inheritdoc} * * Each change must return the name of itself in the case an exception needs to be thrown on an invalid state * * @return string */ public function __toString(); }
Output for rfc.property-hooks, git.master, git.master_jit

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
44.3 ms | 2167 KiB | 4 Q