for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Class Configuration
*/
namespace HDNET\OnpageIntegration\Domain\Model;
*
* @db
class Configuration extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
{
* api_key
* @var string
protected $apiKey;
* project_id
protected $projectId;
* Returns the project id
* @return string
public function getProjectId()
return $this->projectId;
}
* Sets the projects id
* @param string $projectId
public function setProjectId($projectId)
$this->projectId = $projectId;
* Returns the api key
public function getApiKey()
return $this->apiKey;
* Sets the api key
* @param string $apiKey
public function setApiKey($apiKey)
$this->apiKey = $apiKey;