diff --git a/src/Service/Codebird.php b/src/Service/Codebird.php new file mode 100644 index 0000000..814513e --- /dev/null +++ b/src/Service/Codebird.php @@ -0,0 +1,35 @@ +setToken( + getenv('TWITTER_ACCESS_TOKEN'), + getenv('TWITTER_ACCESS_SECRET') + ); + + $this->codebird = $codebird; + } + + public function get(): \Codebird\Codebird + { + return $this->codebird; + } + +}