You are here

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\Entity

Code

public function setBreakpoint($breakpoint) {
  $this->breakpoint = $breakpoint;
  return $this;
}