siad007/versioncontrol_hg

View on GitHub
docs/api/phpdoc/files/Command%5CPushCommand.php.txt

Summary

Maintainability
Test Coverage
<?php
/**
 * VersionControl_HG
 * Simple OO implementation for Mercurial.
 *
 * PHP Version 5.4
 *
 * @copyright 2014 Siad Ardroumli
 * @license http://www.opensource.org/licenses/mit-license.php MIT
 * @link http://siad007.github.io/versioncontrol_hg
 */

namespace Siad007\VersionControl\HG\Command;

/**
 * Simple OO implementation for Mercurial.
 *
 * @author Siad Ardroumli <siad.ardroumli@gmail.com>
 *
 * @method string getForce()
 * @method void setForce(boolean $flag)
 * @method string getNewBranch()
 * @method void setNewBranch(boolean $flag)
 * @method string getSsh()
 * @method void setSsh(string $command)
 * @method string getRemotecmd()
 * @method void setRemotecmd(string $command)
 * @method boolean getInsecure()
 * @method void setInsecure(boolean $flag)
 * @method array getRev()
 * @method void addRev(string $revision)
 * @method array getBookmark()
 * @method void addBookmark(string $bookmark)
 * @method array getBranch()
 * @method void addBranch(string $branch)
 */
class PushCommand extends AbstractCommand
{
    /**
     * Available arguments for this command.
     *
     * @var array $arguments
     */
    protected $arguments = [
        'destination' => ''
    ];

    /**
     * {@inheritdoc}
     *
     * @var mixed $options
     */
    protected $options = [
        '--force'      => false,
        '--rev'        => [],
        '--bookmark'   => [],
        '--branch'     => [],
        '--new-branch' => false,
        '--ssh'        => '',
        '--remotecmd'  => '',
        '--insecure'   => false
    ];

    /**
     * Get the destination.
     *
     * @return string
     */
    public function getDestination()
    {
        return $this->arguments['destination'];
    }

    /**
     * Set the destination.
     *
     * @param string $destination
     *
     * @return void
     */
    public function setDestination($destination)
    {
        $this->arguments['destination'] = escapeshellarg($destination);
    }

    /**
     * {@inheritdoc}
     */
    public function __toString()
    {
        return sprintf(
            "%s%s %s",
            $this->name,
            $this->assembleOptionString(),
            $this->arguments['destination']
        );
    }
}