public Block::setWeight($weight)
Sets the block weight.
Parameters
int $weight: The desired weight.
Return value
$this
Overrides BlockInterface::setWeight
File
- core/modules/block/src/Entity/Block.php, line 311
Class
- Block
- Defines a Block configuration entity class.
Namespace
Drupal\block\Entity
Code
public function setWeight($weight) {
$this->weight = $weight;
return $this;
}
Please login to continue.