Skip to content

Commit 73fd721

Browse files
committed
formatting
1 parent bc0b3e8 commit 73fd721

20 files changed

+126
-159
lines changed

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
.php_cs.cache
22
build
33
composer.lock
4-
docs
4+
files
55
vendor

src/Cmgmyr/Messenger/MessengerServiceProvider.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php namespace Cmgmyr\Messenger;
1+
<?php
2+
3+
namespace Cmgmyr\Messenger;
24

35
use Illuminate\Support\ServiceProvider;
46

src/Cmgmyr/Messenger/Models/Message.php

+7-5
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php namespace Cmgmyr\Messenger\Models;
1+
<?php
2+
3+
namespace Cmgmyr\Messenger\Models;
24

35
use Illuminate\Database\Eloquent\Model as Eloquent;
46
use Illuminate\Support\Facades\Config;
@@ -36,7 +38,7 @@ class Message extends Eloquent
3638
];
3739

3840
/**
39-
* Thread relationship
41+
* Thread relationship.
4042
*
4143
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
4244
*/
@@ -46,7 +48,7 @@ public function thread()
4648
}
4749

4850
/**
49-
* User relationship
51+
* User relationship.
5052
*
5153
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
5254
*/
@@ -56,7 +58,7 @@ public function user()
5658
}
5759

5860
/**
59-
* Participants relationship
61+
* Participants relationship.
6062
*
6163
* @return \Illuminate\Database\Eloquent\Relations\HasMany
6264
*/
@@ -66,7 +68,7 @@ public function participants()
6668
}
6769

6870
/**
69-
* Recipients of this message
71+
* Recipients of this message.
7072
*
7173
* @return \Illuminate\Database\Eloquent\Relations\HasMany
7274
*/

src/Cmgmyr/Messenger/Models/Participant.php

+5-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
<?php namespace Cmgmyr\Messenger\Models;
1+
<?php
2+
3+
namespace Cmgmyr\Messenger\Models;
24

35
use Illuminate\Database\Eloquent\Model as Eloquent;
46
use Illuminate\Database\Eloquent\SoftDeletes;
@@ -30,7 +32,7 @@ class Participant extends Eloquent
3032
protected $dates = ['created_at', 'updated_at', 'deleted_at', 'last_read'];
3133

3234
/**
33-
* Thread relationship
35+
* Thread relationship.
3436
*
3537
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
3638
*/
@@ -40,7 +42,7 @@ public function thread()
4042
}
4143

4244
/**
43-
* User relationship
45+
* User relationship.
4446
*
4547
* @return \Illuminate\Database\Eloquent\Relations\BelongsTo
4648
*/

0 commit comments

Comments
 (0)