public function FooTableBreakpoint::setBreakpoint in FooTable 8
Sets the breakpoint.
Parameters
string|int $breakpoint: The breakpoint.
Return value
$this
Overrides FooTableBreakpointInterface::setBreakpoint
File
- src/
Entity/ FooTableBreakpoint.php, line 73
Class
- FooTableBreakpoint
- Defines the FooTable Breakpoint Config entity.
Namespace
Drupal\footable\EntityCode
public function setBreakpoint($breakpoint) {
$this->breakpoint = $breakpoint;
return $this;
}