Skip to content

Commit

Permalink
Trailing commas are good
Browse files Browse the repository at this point in the history
  • Loading branch information
shama committed Aug 20, 2013
1 parent 56a0ad4 commit 0e77fd1
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/Composer/Installers/Installer.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Installer extends LibraryInstaller
'wordpress' => 'WordPressInstaller',
'zend' => 'ZendInstaller',
'typo3-flow' => 'TYPO3FlowInstaller',
'typo3-cms' => 'TYPO3CmsInstaller'
'typo3-cms' => 'TYPO3CmsInstaller',
);

/**
Expand Down
2 changes: 1 addition & 1 deletion src/Composer/Installers/LithiumInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@ class LithiumInstaller extends BaseInstaller
{
protected $locations = array(
'library' => 'libraries/{$name}/',
'source' => 'libraries/_source/{$name}/'
'source' => 'libraries/_source/{$name}/',
);
}
2 changes: 1 addition & 1 deletion src/Composer/Installers/MODULEWorkInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
class MODULEWorkInstaller extends BaseInstaller
{
protected $locations = array(
'module' => 'modules/{$name}/'
'module' => 'modules/{$name}/',
);
}
2 changes: 1 addition & 1 deletion src/Composer/Installers/OxidInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
class OxidInstaller extends BaseInstaller
{
protected $locations = array(
'module' => 'modules/{$name}/'
'module' => 'modules/{$name}/',
);
}
2 changes: 1 addition & 1 deletion src/Composer/Installers/TYPO3CmsInstaller.php
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
class TYPO3CmsInstaller extends BaseInstaller
{
protected $locations = array(
'extension' => 'typo3conf/ext/{$name}/'
'extension' => 'typo3conf/ext/{$name}/',
);
}

0 comments on commit 0e77fd1

Please sign in to comment.