Skip to content

Instantly share code, notes, and snippets.

View jainsiddharth21's full-sized avatar
🤔

Siddharth Jain jainsiddharth21

🤔
View GitHub Profile
@jainsiddharth21
jainsiddharth21 / User.php
Last active December 19, 2015 19:38
Login with Google in CakePHP
<?php
class User extends AppModel
{
var $name = 'User';
/* The $useTable keyword is reserved in cakePHP
This is used to define the custom new table name */
var $useTable = 'google_users';
}
?>