コード例 #1
0
 public function __construct($genreId, $newName)
 {
     $this->_genre = Genre::find($genreId);
     $this->_newName = $newName;
 }
コード例 #2
0
 public function __construct($genreId, $destinationGenreId)
 {
     $this->_genreToDelete = Genre::find($genreId);
     $this->_destinationGenre = Genre::find($destinationGenreId);
 }