for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace SyncFS\Map;
/**
* Class FileSystemMap
*
* @package SyncFS\Map
* @author Matej Velikonja <[email protected]>
*/
class FileSystemMap implements MapInterface
{
* @var string
private $name;
private $source;
private $destination;
private $client;
* @param string $name
* @param string $source
* @param string $destination
public function __construct($name = null, $source = null, $destination = null)
$this->setName($name);
$this->setSource($source);
$this->setDestination($destination);
}
* @return string
public function getName()
return $this->name;
* @return $this
public function setName($name)
$this->name = $name;
return $this;
public function setDestination($destination)
$this->destination = $destination;
public function getDestination()
return $this->destination;
public function setSource($source)
$this->source = $source;
public function getSource()
return $this->source;
public function getClient()
return $this->client;
* @param string $client
public function setClient($client)
$this->client = $client;