Skip to content

Commit c2efc6c

Browse files
committed
Remove template config item
1 parent a5333e7 commit c2efc6c

File tree

2 files changed

+6
-20
lines changed

2 files changed

+6
-20
lines changed

examples/Outbox.php

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -27,23 +27,16 @@ class Outbox extends \Tatter\Outbox\Config\Outbox
2727
public $routeTemplates = false;
2828

2929
/**
30-
* Layout to use for template management.
30+
* Layout to use for Template management.
3131
*
3232
* @var string
3333
*/
3434
public $layout = 'Tatter\Outbox\Views\layout';
3535

3636
/**
37-
* Default view for email templating.
37+
* View path for the default CSS styles to inline.
3838
*
3939
* @var string
4040
*/
41-
public $template = 'Tatter\Outbox\Views\template';
42-
43-
/**
44-
* Default CSS style view to apply to the template.
45-
*
46-
* @var string
47-
*/
48-
public $styles = 'Tatter\Outbox\Views\styles';
41+
public $styles = 'Tatter\Outbox\Views\Defaults\styles';
4942
}

src/Config/Outbox.php

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -19,23 +19,16 @@ class Outbox extends BaseConfig
1919
public $routeTemplates = false;
2020

2121
/**
22-
* Layout to use for template management.
22+
* Layout to use for Template management.
2323
*
2424
* @var string
2525
*/
2626
public $layout = 'Tatter\Outbox\Views\layout';
2727

2828
/**
29-
* Default view for email templating.
29+
* View path for the default CSS styles to inline.
3030
*
3131
* @var string
3232
*/
33-
public $template = 'Tatter\Outbox\Views\template';
34-
35-
/**
36-
* Default CSS style view to apply to the template.
37-
*
38-
* @var string
39-
*/
40-
public $styles = 'Tatter\Outbox\Views\styles';
33+
public $styles = 'Tatter\Outbox\Views\Defaults\styles';
4134
}

0 commit comments

Comments
 (0)