CC-4090: Make code style PSR compliant

-User.php
-removed all trailing whitespace
This commit is contained in:
Martin Konecny 2012-07-10 18:51:32 -04:00
parent 3d243468a7
commit ee3447f903
30 changed files with 1057 additions and 1037 deletions

View file

@ -5,7 +5,7 @@ class Application_Model_Soundcloud {
private $_soundcloud;
public function __construct()
public function __construct()
{
global $CC_CONFIG;
@ -35,7 +35,7 @@ class Application_Model_Soundcloud {
}
$downloadable = Application_Model_Preference::GetSoundCloudDownloadbleOption() == '1'?true:false;
$track_data = array(
'track[sharing]' => 'private',
'track[title]' => $filename,
@ -77,7 +77,7 @@ class Application_Model_Soundcloud {
if ($license != "") {
$track_data['track[license]'] = $license;
}
$response = json_decode(
$this->_soundcloud->post('tracks', $track_data),
true