for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* GitScrum v0.1.
*
* @author Renato Marinho <[email protected]>
* @license http://opensource.org/licenses/GPL-3.0 GPLv3
*/
namespace GitScrum\Http\Controllers;
use GitScrum\Classes\Github;
class RepositoriesController extends Controller
{
public function update()
$github = new Github();
$github->repositories();
return redirect()->route('user.dashboard')
->with('success', _('Updated successfully'));
}