Completed
Branch s3_upload (b576da)
by satoru
04:12
created
src/Controller/Traits/NormalContentsFileControllerTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -76,6 +76,7 @@
 block discarded – undo
76 76
      * normalResizeSet
77 77
      * 通常のリサイズ処理
78 78
      * @author hagiwara
79
+     * @param string $filepath
79 80
      */
80 81
     private function normalResizeSet($filepath, $resize)
81 82
     {
Please login to merge, or discard this patch.
src/Controller/Traits/S3ContentsFileControllerTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -73,6 +73,7 @@
 block discarded – undo
73 73
      * s3ResizeSet
74 74
      * S3のリサイズ処理
75 75
      * @author hagiwara
76
+     * @param string $filepath
76 77
      */
77 78
     private function s3ResizeSet($filepath, $resize)
78 79
     {
Please login to merge, or discard this patch.
src/Model/Behavior/ContentsFileBehavior.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -321,6 +321,8 @@
 block discarded – undo
321 321
      * mkdir
322 322
      * ディレクトリの作成(パーミッションの設定のため
323 323
      * @author hagiwara
324
+     * @param integer $permission
325
+     * @param boolean $recursive
324 326
      */
325 327
     private function mkdir($path, $permission, $recursive)
326 328
     {
Please login to merge, or discard this patch.
src/Model/Behavior/Traits/NormalContentsFileBehaviorTrait.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -85,6 +85,9 @@
 block discarded – undo
85 85
         return true;
86 86
     }
87 87
 
88
+    /**
89
+     * @param string $newFilepath
90
+     */
88 91
     private function normalImageResize($newFilepath, $resizeSettings)
89 92
     {
90 93
         return $this->imageResize($newFilepath, $resizeSettings);
Please login to merge, or discard this patch.
src/Model/Behavior/Traits/S3ContentsFileBehaviorTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -94,6 +94,7 @@
 block discarded – undo
94 94
      * s3ImageResize
95 95
      * 画像のリサイズ処理(S3用)
96 96
      * @author hagiwara
97
+     * @param string $filepath
97 98
      */
98 99
     public function s3ImageResize($filepath, $resize)
99 100
     {
Please login to merge, or discard this patch.
src/Model/Entity/ContentsFileTrait.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -159,6 +159,7 @@
 block discarded – undo
159 159
      * tmpディレクトリへのアップロード
160 160
      *
161 161
      * @author hagiwara
162
+     * @param string $tmpFileName
162 163
      */
163 164
     private function tmpUpload($tmpName, $fieldSetting, $tmpFileName)
164 165
     {
Please login to merge, or discard this patch.