for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* A new SelectionGroup that does not pull in hardcoded javascript or CSS crap.
*
* @package silverstrap
* @subpackage code
*/
class SilverstrapSelectionGroup extends SelectionGroup
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.
{
* This is just a pristine copy of SelectionGroup::FieldHolder
* without all the Requirements calls.
public function FieldHolder($properties = array())
$obj = $properties ? $this->customise($properties) : $this;
return $obj->renderWith($this->getTemplates());
}
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.