for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by IntelliJ IDEA.
* User: simon
* Date: 18/09/16
* Time: 17:05
*/
class FinishedJob extends QueuedJobDescriptor
You can fix this by adding a namespace to your class:
namespace YourVendor; class YourClass { }
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.
{
public function canCreate($member = null)
return false;
}
public function canDelete($member = null)
return true;
public function canEdit($member = null)
public function canView($member = null)
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab('Root.Main', LiteralField::create('Messages', $this->getMessages()));
return $fields;
You can fix this by adding a namespace to your class:
When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.