Same name and namespace in other branches
  1. 8.9.x core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::setSize()
  2. 9 core/modules/file/src/Entity/File.php \Drupal\file\Entity\File::setSize()

Sets the size of the file.

Parameters

int|null $size: The size of the file in bytes, or NULL if it could not be determined.

Overrides FileInterface::setSize

1 call to File::setSize()
File::preSave in core/modules/file/src/Entity/File.php
Acts on an entity before the presave hook is invoked.

File

core/modules/file/src/Entity/File.php, line 123

Class

File
Defines the file entity class.

Namespace

Drupal\file\Entity

Code

public function setSize($size) {
  $this
    ->get('filesize')->value = $size;
}