for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Firesphere\SolrSearch\Models;
use SilverStripe\ORM\DataObject;
/**
* Class \Firesphere\SolrSearch\Models\SolrError
*
* @property string $Message
* @property string $Index
*/
class SolrLog extends DataObject
{
private static $table_name = 'SolrLog';
private static $db = [
'Message' => 'Text',
'Index' => 'Varchar(255)',
'Type' => 'Enum("Config,Index,Query")'
];
private static $summary_fields = [
$summary_fields
'Created',
'Index',
'Type'
private static $sort = 'Created DESC';
$sort
public function canCreate($member = null, $context = [])
return false;
}
public function canEdit($member = null)