for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace WPApi;
use WPApi\Model\Theme as ThemeModel;
class Theme extends AbstractApiCall
{
/**
* {@inheritdoc}
*/
protected function getType()
return 'themes';
}
protected function createModel()
return new ThemeModel();