$data = "";
if ($photo["backend-class"] == "") {
// legacy data storage in "data" column
- $i = self::selectFirst(["data"], ["id"=>$photo["id"]]);
+ $i = self::selectFirst(["data"], ["id" => $photo["id"]]);
if ($i === false) {
return null;
}
$fields = self::getFields();
$values = array_fill(0, count($fields), "");
$photo = array_combine($fields, $values);
- $photo["backend-class"] = "\Friendica\Model\Storage\SystemResource";
+ $photo["backend-class"] = \Friendica\Model\Storage\SystemResource::class;
$photo["backend-ref"] = $filename;
$photo["type"] = $mimetype;
$photo["cacheable"] = false;
public static function get($ref);
/**
- * @brief Put data in backend as $ref. If $ref is not defiend a new reference is created.
+ * @brief Put data in backend as $ref. If $ref is not defined a new reference is created.
* @param string $data Data to save
* @param string $ref Data referece. Optional.
* @return string Saved data referece
}
$photo = MPhoto::selectFirst([], ["scale" => $scale, "uid" => $uid, "profile" => 1]);
- if ($photo===false) {
+ if ($photo === false) {
$photo = MPhoto::createPhotoForSystemResource($default);
}
return $photo;