for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Custom Component
*/
namespace components;
use CloudControl\Cms\components\BaseComponent;
use CloudControl\Cms\storage\Storage;
class CustomComponent extends BaseComponent
{
* @param Storage $storage
* @return void
public function run(Storage $storage)
parent::run($storage);
// TODO Start coding here
}