소스 검색

Annotate type

Otherwise static code scanners will complain about this.
tags/v9.0beta1
Lukas Reschke 8 년 전
부모
커밋
26c3fa7911
1개의 변경된 파일8개의 추가작업 그리고 6개의 파일을 삭제
  1. 8
    6
      lib/private/image.php

+ 8
- 6
lib/private/image.php 파일 보기

@@ -39,17 +39,19 @@
* Class for basic image manipulation
*/
class OC_Image implements \OCP\IImage {
/** @var false|resource */
protected $resource = false; // tmp resource.
/** @var int */
protected $imageType = IMAGETYPE_PNG; // Default to png if file type isn't evident.
protected $mimeType = "image/png"; // Default to png
/** @var string */
protected $mimeType = 'image/png'; // Default to png
/** @var int */
protected $bitDepth = 24;
/** @var null|string */
protected $filePath = null;
/** @var finfo */
private $fileInfo;

/**
* @var \OCP\ILogger
*/
/** @var \OCP\ILogger */
private $logger;

/**

Loading…
취소
저장