ascvh@#%(^-^)V ?host,ip,port,protocol,title,domain,country,city,link,org ???à JFIF  x x ?? C         ?? C   ?à   " ??     ?? μ  } !1AQa "q2?‘?#B±áR?e$3br? %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz??…???‰?’“”?–—???¢£¤¥|§¨?a23′μ?·?1o??????èéêòó???×?ùúáa?????èéê?òó???÷?ùú??     ?? μ   w !1AQ aq"2?B‘?±á #3Rebr?{ gilour

File "ContainedInterface.php"

Full Path: /home/zcziejy/ryadselyen/Nextend/Framework/Form/ContainedInterface.php
File size: 694 bytes
MIME-type: text/x-php
Charset: utf-8

<?php


namespace Nextend\Framework\Form;


interface ContainedInterface {

    /**
     * @return ContainedInterface|null
     */
    public function getPrevious();

    /**
     * @param ContainedInterface|null $element
     */
    public function setPrevious($element = null);

    /**
     * @return ContainedInterface|null
     */
    public function getNext();

    /**
     * @param ContainedInterface|null $element
     */
    public function setNext($element = null);

    public function remove();

    /**
     * @return ContainerInterface
     */
    public function getParent();

    /**
     * @return string
     */
    public function getPath();

    public function render();
}