@@ -70,6 +70,9 @@ |
||
| 70 | 70 | return md5($file->getFilename()) . "_" . md5(rand(0, 100000)) . "." . $file->getExtension(); |
| 71 | 71 | } |
| 72 | 72 | |
| 73 | + /** |
|
| 74 | + * @param integer $prefix |
|
| 75 | + */ |
|
| 73 | 76 | protected function addFilenamePrefix($filename, $prefix) |
| 74 | 77 | { |
| 75 | 78 | $parts = explode(".", $filename); |
@@ -35,6 +35,9 @@ |
||
| 35 | 35 | protected $meeting; |
| 36 | 36 | protected $notifyMembers = true; |
| 37 | 37 | |
| 38 | + /** |
|
| 39 | + * @param boolean $notifyMembers |
|
| 40 | + */ |
|
| 38 | 41 | public function __construct(Meeting $meeting, $notifyMembers) |
| 39 | 42 | { |
| 40 | 43 | $this->meeting = $meeting; |
@@ -260,6 +260,9 @@ |
||
| 260 | 260 | return $this->getAttribute('minutes'); |
| 261 | 261 | } |
| 262 | 262 | |
| 263 | + /** |
|
| 264 | + * @param string $minutes |
|
| 265 | + */ |
|
| 263 | 266 | public function setMinutes($minutes) |
| 264 | 267 | { |
| 265 | 268 | $this->setAttribute('minutes', $minutes); |
@@ -36,6 +36,10 @@ |
||
| 36 | 36 | protected $new; |
| 37 | 37 | protected $returning; |
| 38 | 38 | |
| 39 | + /** |
|
| 40 | + * @param integer $new |
|
| 41 | + * @param integer $returning |
|
| 42 | + */ |
|
| 39 | 43 | public function __construct(Meeting $meeting, $new, $returning) |
| 40 | 44 | { |
| 41 | 45 | $this->meeting = $meeting; |