3.4.0
This commit is contained in:
@@ -34,8 +34,8 @@ class Camera
|
||||
*/
|
||||
public function __construct(array $exif)
|
||||
{
|
||||
$this->make = @$exif['Make'];
|
||||
$this->model = @$exif['Model'];
|
||||
$this->make = $exif['Make'] ?? null;
|
||||
$this->model = $exif['Model'] ?? null;
|
||||
}
|
||||
|
||||
/**
|
||||
|
Reference in New Issue
Block a user