Skip to content

Commit 0139a8c

Browse files
committed
Set visibility of a property
1 parent ead89a5 commit 0139a8c

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

UploadBehavior.php

+9-9
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ class UploadBehavior extends Behavior
7575
/**
7676
* @var UploadedFile the uploaded file instance.
7777
*/
78-
protected $file;
78+
private $_file;
7979

8080

8181
/**
@@ -119,10 +119,10 @@ public function beforeValidate()
119119
/** @var BaseActiveRecord $model */
120120
$model = $this->owner;
121121
if (in_array($model->scenario, $this->scenarios)) {
122-
$this->file = UploadedFile::getInstance($model, $this->attribute);
123-
if ($this->file instanceof UploadedFile) {
124-
$this->file->name = $this->getFileName($this->file);
125-
$model->setAttribute($this->attribute, $this->file);
122+
$this->_file = UploadedFile::getInstance($model, $this->attribute);
123+
if ($this->_file instanceof UploadedFile) {
124+
$this->_file->name = $this->getFileName($this->_file);
125+
$model->setAttribute($this->attribute, $this->_file);
126126
}
127127
}
128128
}
@@ -135,13 +135,13 @@ public function beforeSave()
135135
/** @var BaseActiveRecord $model */
136136
$model = $this->owner;
137137
if (in_array($model->scenario, $this->scenarios)) {
138-
if ($this->file instanceof UploadedFile) {
138+
if ($this->_file instanceof UploadedFile) {
139139
if (!$model->getIsNewRecord() && $model->isAttributeChanged($this->attribute)) {
140140
if ($this->unlinkOnSave === true) {
141141
$this->delete($this->attribute, true);
142142
}
143143
}
144-
$model->setAttribute($this->attribute, $this->file->name);
144+
$model->setAttribute($this->attribute, $this->_file->name);
145145
} else {
146146
// Protect attribute
147147
unset($model->{$this->attribute});
@@ -162,12 +162,12 @@ public function beforeSave()
162162
*/
163163
public function afterSave()
164164
{
165-
if ($this->file instanceof UploadedFile) {
165+
if ($this->_file instanceof UploadedFile) {
166166
$path = $this->getUploadPath($this->attribute);
167167
if (!FileHelper::createDirectory(dirname($path))) {
168168
throw new InvalidParamException("Directory specified in 'path' attribute doesn't exist or cannot be created.");
169169
}
170-
$this->file->saveAs($path);
170+
$this->_file->saveAs($path);
171171
$this->afterUpload();
172172
}
173173
}

0 commit comments

Comments
 (0)