Skip to content

Commit

Permalink
Fixed autoload for VimeoPlayerControlFactory
Browse files Browse the repository at this point in the history
  • Loading branch information
MartinMystikJonas committed Apr 30, 2016
1 parent 5efe752 commit 8826f0f
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 14 deletions.
14 changes: 0 additions & 14 deletions src/MetisFW/Vimeo/UI/VimeoPlayerControl.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,6 @@
use MetisFW\Vimeo\Utils\VimeoPlayerUrl;
use Nette\Application\UI\Control;

/**
* @return VimeoPlayerControl
*/
interface VimeoPlayerControlFactory {

/**
* @param $videoId
* @param array $playerParameters
* @return VimeoPlayerControl
*/
function create($videoId, array $playerParameters = array());

}

class VimeoPlayerControl extends Control {

/**
Expand Down
17 changes: 17 additions & 0 deletions src/MetisFW/Vimeo/UI/VimeoPlayerControlFactory.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
<?php

namespace MetisFW\Vimeo\UI;

/**
* @return VimeoPlayerControl
*/
interface VimeoPlayerControlFactory {

/**
* @param $videoId
* @param array $playerParameters
* @return VimeoPlayerControl
*/
function create($videoId, array $playerParameters = array());

}

0 comments on commit 8826f0f

Please sign in to comment.