for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Adlogix package.
*
* (c) Allan Segebarth <[email protected]>
* (c) Jean-Jacques Courtens <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Adlogix\ConfluenceClient\Entity;
/***
* Class Space
* @package Adlogix\ConfluenceClient\Entity
* @author Cedric Michaux <[email protected]>
class Space
{
/**
* @var int
private $id;
* @var string
private $key;
private $name;
private $type;
* @var string;
private $description;
* @return int
public function getId()
return $this->id;
}
* @param int $id
* @return Space
public function setId($id)
$this->id = $id;
return $this;
* @return string
public function getKey()
return $this->key;
* @param string $key
public function setKey($key)
$this->key = $key;
public function getName()
return $this->name;
* @param string $name
public function setName($name)
$this->name = $name;
public function getType()
return $this->type;
* @param string $type
public function setType($type)
$this->type = $type;
public function getDescription()
return $this->description;
* @param string $description
public function setDescription($description)
$this->description = $description;