Skip to content

Commit

Permalink
Merge pull request #65 from JayBizzle/patch-1
Browse files Browse the repository at this point in the history
Remove path concatenation
  • Loading branch information
ytake committed Feb 13, 2020
2 parents bcea49b + 87e1dee commit a61b756
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/config/ytake-laravel-smarty.php
Expand Up @@ -43,22 +43,22 @@
'right_delimiter' => '}',

// path info
'template_path' => base_path() . '/resources/views',
'template_path' => base_path('resources/views'),

// smarty cache directory
'cache_path' => storage_path() . '/framework/smarty/cache',
'cache_path' => storage_path('framework/smarty/cache'),

// smarty template compiler
'compile_path' => storage_path() . '/framework/smarty/compile',
'compile_path' => storage_path('framework/smarty/compile'),

// smarty plugins
'plugins_paths' => [
base_path() . '/resources/smarty/plugins',
base_path('resources/smarty/plugins'),
],

// smarty configure
'config_paths' => [
base_path() . '/resources/smarty/config',
base_path('resources/smarty/config'),
],

/**
Expand Down

0 comments on commit a61b756

Please sign in to comment.