Skip to content

Commit

Permalink
Merge pull request #19 from Sergo96/master
Browse files Browse the repository at this point in the history
PHP DocBlock
  • Loading branch information
tabacitu authored Jan 22, 2019
2 parents 348a95f + 8e40ffe commit 58a09ba
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/AlertsMessageBag.php
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ public function flash()
/**
* Deletes all messages.
*
* @param bool $withSession
*
* @return \Prologue\Alerts\AlertsMessageBag
*/
public function flush($withSession = true)
Expand Down
1 change: 1 addition & 0 deletions src/AlertsServiceProvider.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
<?php

namespace Prologue\Alerts;

use Illuminate\Support\ServiceProvider;
Expand Down
7 changes: 7 additions & 0 deletions src/Facades/Alert.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,15 @@
<?php

namespace Prologue\Alerts\Facades;

use Illuminate\Support\Facades\Facade;

/**
* @method static \Prologue\Alerts\AlertsMessageBag success(string $text)
* @method static \Prologue\Alerts\AlertsMessageBag error(string $text)
* @method static \Prologue\Alerts\AlertsMessageBag warning(string $text)
* @method static \Prologue\Alerts\AlertsMessageBag info(string $text)
*/
class Alert extends Facade
{
/**
Expand Down

0 comments on commit 58a09ba

Please sign in to comment.