filePath.'.1'; rename($this->filePath, $rotatedFile); return $rotatedFile; } /** * @return bool * @since 14.0.0 */ protected function shouldRotateBySize():bool { if ((int)$this->maxSize > 0 && file_exists($this->filePath)) { $filesize = @filesize($this->filePath); if ($filesize >= (int)$this->maxSize) { return true; } } return false; } }