Skip to content

Commit

Permalink
youtube uploader facade
Browse files Browse the repository at this point in the history
  • Loading branch information
BahaaAlhagar committed Jul 31, 2018
1 parent d39ff67 commit 508bac4
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 13 deletions.
18 changes: 18 additions & 0 deletions src/Facades/YoutubeUploader.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
<?php

namespace BahaaAlhagar\Youtube\Facades;

use Illuminate\Support\Facades\Facade;

class YoutubeUploader extends Facade
{
/**
* Get the registered name of the component.
*
* @return string
*/
protected static function getFacadeAccessor()
{
return 'youtubeUploader';
}
}
14 changes: 1 addition & 13 deletions src/YoutubeUploader.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

namespace BahaaAlhagar\YoutubeUploader;

class SkeletonClass
class YoutubeUploader
{
/**
* Create a new Skeleton Instance
Expand All @@ -11,16 +11,4 @@ public function __construct()
{
// constructor body
}

/**
* Friendly welcome
*
* @param string $phrase Phrase to return
*
* @return string Returns the phrase passed in
*/
public function echoPhrase($phrase)
{
return $phrase;
}
}

0 comments on commit 508bac4

Please sign in to comment.