Skip to content

Commit

Permalink
cs
Browse files Browse the repository at this point in the history
  • Loading branch information
samsonasik committed Mar 27, 2020
1 parent 925684f commit 92e4824
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/Domain/Track/Track.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,9 +16,9 @@ class Track extends Entity
'author' => null,
];

public function setAlbumId(int $album_id): self
public function setAlbumId(int $albumId): self
{
$this->attributes['album_id'] = $album_id;
$this->attributes['album_id'] = $albumId;
return $this;
}

Expand Down
6 changes: 5 additions & 1 deletion src/Views/track/add.php
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,11 @@
?>

<br />
<?php echo anchor(sprintf('track/%d', $album->id), sprintf('Back to Track Index of %s:%s', $album->artist, $album->title)); ?>
<?php echo anchor(
sprintf('track/%d', $album->id),
sprintf('Back to Track Index of %s:%s', $album->artist, $album->title)
);
?>

<?php
// end section content
Expand Down
6 changes: 5 additions & 1 deletion src/Views/track/edit.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,11 @@
?>

<br />
<?php echo anchor(sprintf('track/%d', $album->id), sprintf('Back to Track Index of %s:%s', $album->artist, $album->title)); ?>
<?php echo anchor(
sprintf('track/%d', $album->id),
sprintf('Back to Track Index of %s:%s', $album->artist, $album->title)
);
?>

<?php
// end section content
Expand Down

0 comments on commit 92e4824

Please sign in to comment.