Skip to content

Commit

Permalink
Fixed type hinting bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Bob Olde Hampsink committed Oct 19, 2015
1 parent ef34a17 commit 8ed2e63
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions services/SchematicService.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,12 +49,12 @@ public function exportToYaml($file)
/**
* Import data model.
*
* @param array $model
* @param bool $force if set to true items not in the import will be deleted
* @param Schematic_DataModel $model
* @param bool $force if set to true items not in the import will be deleted
*
* @return Schematic_ResultModel
*/
private function importDataModel(array $model, $force)
private function importDataModel(Schematic_DataModel $model, $force)
{
// Import schema
$pluginImportResult = craft()->schematic_plugins->import($model->plugins);
Expand Down

0 comments on commit 8ed2e63

Please sign in to comment.