Skip to content

Commit d608127

Browse files
committed
Fix namespace on example config
1 parent 70499ff commit d608127

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

Alerts.php.example

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
use CodeIgniter\Config\BaseConfig;
1414

15-
class Alerts extends \Tatter\Alerts\Config
15+
class Alerts extends \Tatter\Alerts\Config\Assets
1616
{
1717
// prefix for SESSION variables and HTML classes, to prevent collision
1818
public $prefix = "alerts-";

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Provides out-of-the-box user alerts for CodeIgniter 4
2020

2121
Install easily via Composer to take advantage of CodeIgniter 4's autoloading capabilities
2222
and always be up-to-date:
23-
`> composer require tatter/alerts`
23+
* `> composer require tatter/alerts`
2424

2525
Or, install manually by downloading the source files and copying them into CodeIgniter 4's
2626
app/ same subdirectories.

src/Alerts.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
use Tatter\Alerts\Exceptions\AlertsException;
2828

2929
/*** CLASS ***/
30-
class Alerts {
30+
class Alerts
31+
{
3132

3233
/**
3334
* Our configuration instance.

0 commit comments

Comments
 (0)