Skip to content

Commit 12527cb

Browse files
Denis Gorbachevweaverryan
authored andcommitted
Remove trailing slashes from directory names
1 parent a42e881 commit 12527cb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

cookbook/configuration/override_dir_structure.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ in the ``AppKernel`` class of you application::
3838

3939
public function getCacheDir()
4040
{
41-
return $this->rootDir.'/'.$this->environment.'/cache/';
41+
return $this->rootDir.'/'.$this->environment.'/cache';
4242
}
4343
}
4444

@@ -69,7 +69,7 @@ method::
6969

7070
public function getLogDir()
7171
{
72-
return $this->rootDir.'/'.$this->environment.'/logs/';
72+
return $this->rootDir.'/'.$this->environment.'/logs';
7373
}
7474
}
7575

0 commit comments

Comments
 (0)