for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of Gitamin.
*
* Copyright (C) 2015-2016 The Gitamin Team
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Gitamin\Presenters;
use Gitamin\Presenters\Traits\TimestampsTrait;
class ProjectPresenter extends AbstractPresenter
{
use TimestampsTrait;
/**
* Returns the override class name for theming.
* @return string
public function status_color()
switch ($this->wrappedObject->status) {
case 1: return 'greens';
case 2: return 'blues';
case 3: return 'yellows';
case 4: return 'reds';
}
* Convert the presenter instance to an array.
* @return string[]
public function toArray()
return array_merge($this->wrappedObject->toArray(), [
'created_at' => $this->created_at(),
'updated_at' => $this->updated_at(),
'namespace' => $this->wrappedObject->group->path,
'status_name' => $this->wrappedObject->humanStatus,
]);