Completed
Branch master (d05ccb)
by Dejan
15:43
created
app/Core/FileSystem/LocalFileSystem.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -70,6 +70,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
app/Meetings/Events/MeetingWasCreatedEvent.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -35,6 +35,9 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
app/Meetings/Meeting.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -260,6 +260,9 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
app/Meetings/Reports/MeetingAttendantsTypeReport.php 1 patch
Doc Comments   +4 added lines patch added patch discarded remove patch
@@ -36,6 +36,10 @@
 block discarded – undo
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;
Please login to merge, or discard this patch.
tests/Core/Reports/AbstractMonthlyReportTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Angelov\Storgman\Core\DateTime;
6 6
 use Angelov\Storgman\Core\Reports\AbstractMonthlyReport;
7 7
 use Angelov\Storgman\Tests\TestCase;
8
-use Mockery;
9 8
 
10 9
 class AbstractMonthlyReportTest extends TestCase
11 10
 {
Please login to merge, or discard this patch.
tests/Membership/MembershipServiceTest.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,6 @@
 block discarded – undo
27 27
 
28 28
 namespace Angelov\Storgman\Tests\Meetings;
29 29
 
30
-use Angelov\Storgman\Core\DateTime;
31 30
 use Angelov\Storgman\Members\Member;
32 31
 use Angelov\Storgman\Members\Repositories\MembersRepositoryInterface;
33 32
 use Angelov\Storgman\Membership\MembershipService;
Please login to merge, or discard this patch.