We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3056dfc + b99faf7 commit 831355dCopy full SHA for 831355d
app/Console/Commands/SendNotifications.php
@@ -90,12 +90,10 @@ public function handle()
90
// Space
91
$txt .= ' - ';
92
// Clauses
93
- foreach ($control->measures() as $measure) {
94
- if ($measure!==null) {
95
- $txt .= '<a href="' . url('/alice/show/' . $measure->id) . '">'. htmlentities($measure->clause) . '</a>';
96
- // Space
97
- $txt .= ' ';
98
- }
+ foreach ($control->measures as $measure) {
+ $txt .= '<a href="' . url('/alice/show/' . $measure->id) . '">'. htmlentities($measure->clause) . '</a>';
+ // Space
+ $txt .= ' ';
99
}
100
$txt .= ' - ';
101
// Name
0 commit comments