Skip to content

Strange code concatention instead of method call? #66

@JedrzejMajko

Description

@JedrzejMajko

I'm refering to:

if ($this->verifyUpload && !$preloaded.is_valid()) {

In line 38:
if ($this->verifyUpload && !$preloaded.is_valid()) {

(!$preloaded in concatenated with function is_valid())

I think you meant:
if ($this->verifyUpload && !$preloaded->is_valid()) {

$preloaded method valid result is negated

I'm arguing it because such method call is used afterwards.

Metadata

Metadata

Assignees

Labels

No labels
No labels

Type

No type

Projects

No projects

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions