SYMBOL INDEX (746 symbols across 170 files) FILE: app/Commands/Command.php class Command (line 3) | abstract class Command { FILE: app/Commands/CreateFeedCommand.php class CreateFeedCommand (line 8) | class CreateFeedCommand extends Command implements SelfHandling { method __construct (line 34) | public function __construct($body, $posterFirstname, $posterProfileImage) method handle (line 48) | public function handle() FILE: app/Commands/CreateFriendRequestCommand.php class CreateFriendRequestCommand (line 10) | class CreateFriendRequestCommand extends Command implements SelfHandling { method __construct (line 22) | public function __construct($requestedId) method handle (line 33) | public function handle(UserRepository $userRepository) FILE: app/Commands/CreateMessageCommand.php class CreateMessageCommand (line 10) | class CreateMessageCommand extends Command implements SelfHandling { method __construct (line 39) | public function __construct($receiverId, $body, $senderId, $senderProf... method handle (line 57) | public function handle(UserRepository $userRepository, MessageReposito... FILE: app/Commands/CreateMessageResponseCommand.php class CreateMessageResponseCommand (line 9) | class CreateMessageResponseCommand extends Command implements SelfHandli... method __construct (line 45) | public function __construct($receiverId, $body, $senderId, $senderProf... method handle (line 65) | public function handle(UserRepository $userRepository, MessageReposito... FILE: app/Commands/LoginUserCommand.php class LoginUserCommand (line 8) | class LoginUserCommand extends Command implements SelfHandling { method __construct (line 32) | public function __construct($email, $password) method handle (line 45) | public function handle() FILE: app/Commands/LogoutUserCommand.php class LogoutUserCommand (line 9) | class LogoutUserCommand extends Command implements SelfHandling { method __construct (line 28) | public function __construct($userId) method handle (line 40) | public function handle() FILE: app/Commands/RegisterUserCommand.php class RegisterUserCommand (line 9) | class RegisterUserCommand extends Command implements SelfHandling { method __construct (line 28) | public function __construct( method handle (line 63) | public function handle() FILE: app/Commands/RemoveFriendCommand.php class RemoveFriendCommand (line 9) | class RemoveFriendCommand extends Command implements SelfHandling { method __construct (line 30) | public function __construct($userId) method handle (line 44) | public function handle(UserRepository $userRepository) FILE: app/Commands/SendChatMessageCommand.php class SendChatMessageCommand (line 8) | class SendChatMessageCommand extends Command implements SelfHandling { method __construct (line 30) | public function __construct($receiverId, $message) method handle (line 41) | public function handle() FILE: app/Commands/UpdateChatStatusCommand.php class UpdateChatStatusCommand (line 8) | class UpdateChatStatusCommand extends Command implements SelfHandling { method __construct (line 36) | public function __construct($chatStatus) method handle (line 47) | public function handle() FILE: app/Console/Commands/Inspire.php class Inspire (line 6) | class Inspire extends Command { method handle (line 27) | public function handle() FILE: app/Console/Kernel.php class Kernel (line 6) | class Kernel extends ConsoleKernel { method schedule (line 23) | protected function schedule(Schedule $schedule) FILE: app/Events/Event.php class Event (line 3) | abstract class Event { FILE: app/Events/FriendRequestWasSent.php class FriendRequestWasSent (line 7) | class FriendRequestWasSent extends Event { method __construct (line 30) | public function __construct(User $requestedUser, User $requesterUser) FILE: app/Events/UserWasRegistered.php class UserWasRegistered (line 8) | class UserWasRegistered extends Event { method __construct (line 24) | public function __construct(User $user) FILE: app/Exceptions/Handler.php class Handler (line 6) | class Handler extends ExceptionHandler { method report (line 25) | public function report(Exception $e) method render (line 37) | public function render($request, Exception $e) FILE: app/Feed.php class Feed (line 5) | class Feed extends Model { method user (line 18) | public function user() method publish (line 34) | public static function publish($body, $poster_firstname, $poster_profi... method getTotalCountFeedsForUser (line 48) | public static function getTotalCountFeedsForUser($userIds) FILE: app/FriendRequest.php class FriendRequest (line 5) | class FriendRequest extends Model { method user (line 20) | public function user() method prepareFriendRequest (line 33) | public static function prepareFriendRequest($requester_id) FILE: app/Handlers/Events/EmailFriendRequest.php class EmailFriendRequest (line 9) | class EmailFriendRequest method __construct (line 24) | public function __construct(UserMailer $mailer) method handle (line 34) | public function handle(FriendRequestWasSent $event) FILE: app/Handlers/Events/EmailRegistrationConfirmation.php class EmailRegistrationConfirmation (line 9) | class EmailRegistrationConfirmation { method __construct (line 23) | public function __construct(UserMailer $mailer) method handle (line 34) | public function handle(UserWasRegistered $event) FILE: app/Http/Controllers/ChatController.php class ChatController (line 10) | class ChatController extends Controller { method __construct (line 15) | public function __construct() method sendMessage (line 27) | public function sendMessage(Request $request, UserRepository $userRepo... FILE: app/Http/Controllers/ChatStatusController.php class ChatStatusController (line 9) | class ChatStatusController extends Controller { method __construct (line 15) | public function __construct() method update (line 28) | public function update(Request $request) FILE: app/Http/Controllers/Controller.php class Controller (line 7) | abstract class Controller extends BaseController { FILE: app/Http/Controllers/FeedController.php class FeedController (line 11) | class FeedController extends Controller { method __construct (line 23) | public function __construct() method index (line 35) | public function index(FeedRepository $feedRepository) method more (line 56) | public function more(Request $request, FeedRepository $feedRepository) method store (line 72) | public function store(Request $request) FILE: app/Http/Controllers/FriendController.php class FriendController (line 13) | class FriendController extends Controller { method __construct (line 16) | public function __construct() method index (line 26) | public function index(UserRepository $repository) method store (line 42) | public function store(Request $request, UserRepository $repository) method destroy (line 74) | public function destroy(Request $request) FILE: app/Http/Controllers/FriendRequestController.php class FriendRequestController (line 15) | class FriendRequestController extends Controller { method __construct (line 25) | public function __construct() method index (line 37) | public function index(FriendRequestRepository $friendRequestRepository... method create (line 55) | public function create() method store (line 67) | public function store(Request $request) method destroy (line 92) | public function destroy(Request $request) FILE: app/Http/Controllers/MessageController.php class MessageController (line 13) | class MessageController extends Controller { method __construct (line 16) | public function __construct() method index (line 28) | public function index(UserRepository $userRepository) method create (line 43) | public function create($id, UserRepository $userRepository) method store (line 58) | public function store(Request $request) method show (line 82) | public function show($id, MessageRepository $messageRepository) method destroy (line 99) | public function destroy(Request $request) FILE: app/Http/Controllers/MessageResponseController.php class MessageResponseController (line 12) | class MessageResponseController extends Controller { method __construct (line 18) | public function __construct() method store (line 32) | public function store(Request $request) method update (line 59) | public function update(Request $request) FILE: app/Http/Controllers/RegistrationController.php class RegistrationController (line 12) | class RegistrationController extends Controller { method __construct (line 17) | public function __construct() method create (line 27) | public function create() method store (line 50) | public function store(RegisterUserRequest $request) FILE: app/Http/Controllers/SessionController.php class SessionController (line 10) | class SessionController extends Controller { method store (line 18) | public function store(CreateSessionRequest $request) method destroy (line 36) | public function destroy(Request $request) FILE: app/Http/Controllers/UserController.php class UserController (line 10) | class UserController extends Controller { method __construct (line 18) | public function __construct() method index (line 33) | public function index(Request $request, UserRepository $userRepository) method show (line 50) | public function show($id, UserRepository $userRepository, FeedReposito... FILE: app/Http/Kernel.php class Kernel (line 5) | class Kernel extends HttpKernel { FILE: app/Http/Middleware/Authenticate.php class Authenticate (line 6) | class Authenticate { method __construct (line 21) | public function __construct(Guard $auth) method handle (line 33) | public function handle($request, Closure $next) FILE: app/Http/Middleware/CustomVerifyCsrfToken.php class CustomVerifyCsrfToken (line 5) | class CustomVerifyCsrfToken extends BaseVerifier method handle (line 30) | public function handle($request, \Closure $next) method excludedRoutes (line 45) | protected function excludedRoutes($request) FILE: app/Http/Middleware/RedirectIfAuthenticated.php class RedirectIfAuthenticated (line 7) | class RedirectIfAuthenticated { method __construct (line 22) | public function __construct(Guard $auth) method handle (line 34) | public function handle($request, Closure $next) FILE: app/Http/Middleware/VerifyCsrfToken.php class VerifyCsrfToken (line 6) | class VerifyCsrfToken extends BaseVerifier { method handle (line 15) | public function handle($request, Closure $next) FILE: app/Http/Requests/CreateMessageRequest.php class CreateMessageRequest (line 5) | class CreateMessageRequest extends Request { method authorize (line 12) | public function authorize() method rules (line 22) | public function rules() FILE: app/Http/Requests/CreateMessageResponseRequest.php class CreateMessageResponseRequest (line 5) | class CreateMessageResponseRequest extends Request { method authorize (line 12) | public function authorize() method rules (line 22) | public function rules() FILE: app/Http/Requests/CreateSessionRequest.php class CreateSessionRequest (line 5) | class CreateSessionRequest extends Request { method authorize (line 12) | public function authorize() method rules (line 22) | public function rules() FILE: app/Http/Requests/RegisterUserRequest.php class RegisterUserRequest (line 5) | class RegisterUserRequest extends Request { method authorize (line 12) | public function authorize() method rules (line 22) | public function rules() FILE: app/Http/Requests/Request.php class Request (line 5) | abstract class Request extends FormRequest { FILE: app/Mailers/Mailer.php class Mailer (line 5) | abstract class Mailer method __construct (line 15) | public function __construct(Mail $mail) method sendTo (line 29) | public function sendTo($user, $subject, $view, $data = []) FILE: app/Mailers/UserMailer.php class UserMailer (line 5) | class UserMailer extends Mailer method sendWelcomeMessageTo (line 13) | public function sendWelcomeMessageTo(User $user) method sendFriendRequestAlertTo (line 33) | public function sendFriendRequestAlertTo(User $requestedUser, User $re... FILE: app/Message.php class Message (line 5) | class Message extends Model { method users (line 17) | public function users() method createMessage (line 32) | public static function createMessage($body, $senderId, $senderProfileI... method messageResponses (line 48) | public function messageResponses() method getLastReceiverId (line 58) | public function getLastReceiverId() method belongsToUser (line 70) | public function belongsToUser($userId) FILE: app/MessageResponse.php class MessageResponse (line 6) | class MessageResponse extends Model { method users (line 20) | public function users() method message (line 31) | public function message() method createMessageResponse (line 46) | public static function createMessageResponse($body, $senderId, $receiv... method getMessageResponseSubject (line 64) | public function getMessageResponseSubject() method hasBeenOpenedBy (line 77) | public function hasBeenOpenedBy($userId) method wasSentByThisUser (line 90) | public function wasSentByThisUser($userId) FILE: app/Providers/AppServiceProvider.php class AppServiceProvider (line 8) | class AppServiceProvider extends ServiceProvider { method boot (line 15) | public function boot() method register (line 25) | public function register() FILE: app/Providers/BusServiceProvider.php class BusServiceProvider (line 6) | class BusServiceProvider extends ServiceProvider { method boot (line 14) | public function boot(Dispatcher $dispatcher) method register (line 29) | public function register() FILE: app/Providers/ConfigServiceProvider.php class ConfigServiceProvider (line 5) | class ConfigServiceProvider extends ServiceProvider { method register (line 16) | public function register() FILE: app/Providers/EventServiceProvider.php class EventServiceProvider (line 10) | class EventServiceProvider extends ServiceProvider { method boot (line 36) | public function boot(DispatcherContract $events) FILE: app/Providers/RouteServiceProvider.php class RouteServiceProvider (line 6) | class RouteServiceProvider extends ServiceProvider { method boot (line 23) | public function boot(Router $router) method map (line 36) | public function map(Router $router) FILE: app/Realtime/Chat.php class Chat (line 3) | class Chat extends Realtime method sendMessageTo (line 17) | public function sendMessageTo($userId = "", $clientCode = "", $fromId ... FILE: app/Realtime/Events.php class Events (line 3) | class Events extends Realtime method updateChatStatusBar (line 18) | public function updateChatStatusBar($userIds = [], $clientCode = "", $... method updateChatListFriendRemoved (line 35) | public function updateChatListFriendRemoved($userId = "", $clientCode ... FILE: app/Realtime/Realtime.php class Realtime (line 6) | abstract class Realtime method __construct (line 15) | public function __construct() method broadcastToAll (line 27) | public function broadcastToAll($userIds = [], $clientCode = "", $relat... method broadcastTo (line 51) | public function broadcastTo($userId = "", $clientCode = "", $relatedTo... FILE: app/Repositories/Feed/EloquentFeedRepository.php class EloquentFeedRepository (line 6) | class EloquentFeedRepository implements FeedRepository method getPublishedByUserAndFriends (line 15) | public function getPublishedByUserAndFriends(User $user) method getPublishedByUser (line 25) | public function getPublishedByUser(User $user) method getPublishedByUserAndFriendsAjax (line 41) | public function getPublishedByUserAndFriendsAjax(User $user, $skipQty) FILE: app/Repositories/Feed/FeedRepository.php type FeedRepository (line 5) | interface FeedRepository method getPublishedByUserAndFriends (line 7) | public function getPublishedByUserAndFriends(User $user); method getPublishedByUser (line 9) | public function getPublishedByUser(User $user); method getPublishedByUserAndFriendsAjax (line 11) | public function getPublishedByUserAndFriendsAjax(User $user, $skipQty); FILE: app/Repositories/FriendRequest/EloquentFriendRequestRepository.php class EloquentFriendRequestRepository (line 7) | class EloquentFriendRequestRepository implements FriendRequestRepository method getIdsThatSentRequestToCurrentUser (line 9) | public function getIdsThatSentRequestToCurrentUser($id) FILE: app/Repositories/FriendRequest/FriendRequestRepository.php type FriendRequestRepository (line 5) | interface FriendRequestRepository method getIdsThatSentRequestToCurrentUser (line 7) | public function getIdsThatSentRequestToCurrentUser($id); FILE: app/Repositories/Message/EloquentMessageRepository.php class EloquentMessageRepository (line 5) | class EloquentMessageRepository implements MessageRepository method findById (line 14) | public function findById($id) method findByIdWithMessageResponses (line 26) | public function findByIdWithMessageResponses($id) FILE: app/Repositories/Message/MessageRepository.php type MessageRepository (line 6) | interface MessageRepository method findById (line 8) | public function findById($id); method findByIdWithMessageResponses (line 9) | public function findByIdWithMessageResponses($id); FILE: app/Repositories/User/CachingUserRepository.php class CachingUserRepository (line 6) | class CachingUserRepository implements UserRepository method __construct (line 33) | public function __construct(UserRepository $repository, Cache $cache) method getPaginated (line 49) | public function getPaginated($howMany = 10, $byFirstname = null) method findById (line 75) | public function findById($id) method findManyById (line 87) | public function findManyById(array $ids) method findByIdWithFeeds (line 99) | public function findByIdWithFeeds($id) method findByIdWithMessages (line 111) | public function findByIdWithMessages($id) method findByIdWithFriendRequests (line 123) | public function findByIdWithFriendRequests($id) method findByIdWithFriends (line 135) | public function findByIdWithFriends($id) FILE: app/Repositories/User/EloquentUserRepository.php class EloquentUserRepository (line 6) | class EloquentUserRepository implements UserRepository method getPaginated (line 17) | public function getPaginated($howMany = 10, $byFirstname = null) method findById (line 34) | public function findById($id) method findManyById (line 46) | public function findManyById(array $ids) method findByIdWithFeeds (line 66) | public function findByIdWithFeeds($id) method findByIdWithMessages (line 82) | public function findByIdWithMessages($id) method findByIdWithFriendRequests (line 93) | public function findByIdWithFriendRequests($userId) method findByIdWithFriends (line 109) | public function findByIdWithFriends($userId) FILE: app/Repositories/User/UserRepository.php type UserRepository (line 5) | interface UserRepository method getPaginated (line 7) | public function getPaginated($howMany, $byKeyword); method findById (line 8) | public function findById($id); method findManyById (line 9) | public function findManyById(array $ids); method findByIdWithFeeds (line 10) | public function findByIdWithFeeds($id); method findByIdWithMessages (line 11) | public function findByIdWithMessages($id); method findByIdWithFriends (line 12) | public function findByIdWithFriends($userId); FILE: app/Services/ProcessImage.php class ProcessImage (line 6) | class ProcessImage method execute (line 15) | public function execute($file, $path, $width, $height) method rename (line 28) | public function rename($file) FILE: app/User.php class User (line 10) | class User extends Model implements AuthenticatableContract, CanResetPas... method feeds (line 39) | public function feeds() method friendRequests (line 49) | public function friendRequests() method friends (line 60) | public function friends() method messages (line 70) | public function messages() method messageResponses (line 80) | public function messageResponses() method register (line 105) | public static function register($firstname, $lastname, $email, $passwo... method createFriendShipWith (line 119) | public function createFriendShipWith($requesterUserId) method finishFriendshipWith (line 132) | public function finishFriendshipWith($requesterUserId) method updateOnlineStatus (line 146) | public function updateOnlineStatus($status) method isFriendsWith (line 160) | public function isFriendsWith($otherUserId) method sentFriendRequestTo (line 174) | public function sentFriendRequestTo($otherUserId) method receivedFriendRequestFrom (line 188) | public function receivedFriendRequestFrom($otherUserId) method is (line 204) | public function is($id) method isAvailableToChat (line 214) | public function isAvailableToChat() method updateChatStatus (line 226) | public function updateChatStatus($chatStatus) method isOnline (line 238) | public function isOnline() FILE: bower_components/bootstrap-switch/dist/js/bootstrap-switch.js function BootstrapSwitch (line 29) | function BootstrapSwitch(element, options) { FILE: bower_components/bootstrap/dist/js/bootstrap.js function transitionEnd (line 34) | function transitionEnd() { function removeElement (line 126) | function removeElement() { function Plugin (line 142) | function Plugin(option) { function Plugin (line 247) | function Plugin(option) { function Plugin (line 466) | function Plugin(option) { function getTargetFromTrigger (line 685) | function getTargetFromTrigger($trigger) { function Plugin (line 697) | function Plugin(option) { function clearMenus (line 829) | function clearMenus(e) { function getParent (line 848) | function getParent($this) { function Plugin (line 865) | function Plugin(option) { function Plugin (line 1194) | function Plugin(option, _relatedTarget) { function complete (line 1540) | function complete() { function Plugin (line 1692) | function Plugin(option) { function Plugin (line 1801) | function Plugin(option) { function ScrollSpy (line 1844) | function ScrollSpy(element, options) { function Plugin (line 1964) | function Plugin(option) { function next (line 2071) | function next() { function Plugin (line 2117) | function Plugin(option) { function Plugin (line 2274) | function Plugin(option) { FILE: bower_components/bootstrap/grunt/bs-commonjs-generator.js function srcPathToDestRequire (line 10) | function srcPathToDestRequire(srcFilepath) { FILE: bower_components/bootstrap/grunt/bs-lessdoc-parser.js function markdown2html (line 11) | function markdown2html(markdownString) { function Section (line 42) | function Section(heading, customizable) { function SubSection (line 54) | function SubSection(heading) { function VarDocstring (line 64) | function VarDocstring(markdownString) { function SectionDocstring (line 68) | function SectionDocstring(markdownString) { function Variable (line 72) | function Variable(name, defaultValue) { function Tokenizer (line 78) | function Tokenizer(fileContent) { function Parser (line 142) | function Parser(fileContent) { FILE: bower_components/bootstrap/grunt/bs-raw-files-generator.js function getFiles (line 15) | function getFiles(type) { FILE: bower_components/bootstrap/js/affix.js function Plugin (line 119) | function Plugin(option) { FILE: bower_components/bootstrap/js/alert.js function removeElement (line 48) | function removeElement() { function Plugin (line 64) | function Plugin(option) { FILE: bower_components/bootstrap/js/button.js function Plugin (line 74) | function Plugin(option) { FILE: bower_components/bootstrap/js/carousel.js function Plugin (line 176) | function Plugin(option) { FILE: bower_components/bootstrap/js/collapse.js function getTargetFromTrigger (line 157) | function getTargetFromTrigger($trigger) { function Plugin (line 169) | function Plugin(option) { FILE: bower_components/bootstrap/js/dropdown.js function clearMenus (line 89) | function clearMenus(e) { function getParent (line 108) | function getParent($this) { function Plugin (line 125) | function Plugin(option) { FILE: bower_components/bootstrap/js/modal.js function Plugin (line 292) | function Plugin(option, _relatedTarget) { FILE: bower_components/bootstrap/js/popover.js function Plugin (line 82) | function Plugin(option) { FILE: bower_components/bootstrap/js/scrollspy.js function ScrollSpy (line 16) | function ScrollSpy(element, options) { function Plugin (line 136) | function Plugin(option) { FILE: bower_components/bootstrap/js/tab.js function next (line 70) | function next() { function Plugin (line 116) | function Plugin(option) { FILE: bower_components/bootstrap/js/tooltip.js function complete (line 298) | function complete() { function Plugin (line 450) | function Plugin(option) { FILE: bower_components/bootstrap/js/transition.js function transitionEnd (line 16) | function transitionEnd() { FILE: bower_components/jquery-timeago/jquery.timeago.js function substitute (line 93) | function substitute(stringOrFunction, number) { function refresh (line 177) | function refresh() { function prepareData (line 189) | function prepareData(element) { function inWords (line 203) | function inWords(date) { function distance (line 207) | function distance(date) { FILE: bower_components/jquery-timeago/locales/jquery.timeago.ar.js function numpf (line 2) | function numpf(n, a) { FILE: bower_components/jquery-timeago/locales/jquery.timeago.pl.js function numpf (line 3) | function numpf(n, s, t) { FILE: bower_components/jquery-timeago/locales/jquery.timeago.ru.js function numpf (line 3) | function numpf(n, f, s, t) { FILE: bower_components/jquery-timeago/locales/jquery.timeago.uk.js function numpf (line 3) | function numpf(n, f, s, t) { FILE: bower_components/jquery/dist/jquery.js function isArraylike (line 533) | function isArraylike( obj ) { function Sizzle (line 745) | function Sizzle( selector, context, results, seed ) { function createCache (line 859) | function createCache() { function markFunction (line 877) | function markFunction( fn ) { function assert (line 886) | function assert( fn ) { function addHandle (line 908) | function addHandle( attrs, handler ) { function siblingCheck (line 923) | function siblingCheck( a, b ) { function createInputPseudo (line 950) | function createInputPseudo( type ) { function createButtonPseudo (line 961) | function createButtonPseudo( type ) { function createPositionalPseudo (line 972) | function createPositionalPseudo( fn ) { function testContext (line 995) | function testContext( context ) { function setFilters (line 2004) | function setFilters() {} function toSelector (line 2075) | function toSelector( tokens ) { function addCombinator (line 2085) | function addCombinator( matcher, combinator, base ) { function elementMatcher (line 2138) | function elementMatcher( matchers ) { function multipleContexts (line 2152) | function multipleContexts( selector, contexts, results ) { function condense (line 2161) | function condense( unmatched, map, filter, context, xml ) { function setMatcher (line 2182) | function setMatcher( preFilter, selector, matcher, postFilter, postFinde... function matcherFromTokens (line 2275) | function matcherFromTokens( tokens ) { function matcherFromGroupMatchers (line 2333) | function matcherFromGroupMatchers( elementMatchers, setMatchers ) { function winnow (line 2629) | function winnow( elements, qualifier, not ) { function sibling (line 2953) | function sibling( cur, dir ) { function createOptions (line 3031) | function createOptions( options ) { function completed (line 3425) | function completed() { function Data (line 3530) | function Data() { function dataAttr (line 3721) | function dataAttr( elem, key, data ) { function returnTrue (line 4061) | function returnTrue() { function returnFalse (line 4065) | function returnFalse() { function safeActiveElement (line 4069) | function safeActiveElement() { function manipulationTarget (line 4941) | function manipulationTarget( elem, content ) { function disableScript (line 4951) | function disableScript( elem ) { function restoreScript (line 4955) | function restoreScript( elem ) { function setGlobalEval (line 4968) | function setGlobalEval( elems, refElements ) { function cloneCopyEvent (line 4979) | function cloneCopyEvent( src, dest ) { function getAll (line 5013) | function getAll( context, tag ) { function fixInput (line 5024) | function fixInput( src, dest ) { function actualDisplay (line 5479) | function actualDisplay( name, doc ) { function defaultDisplay (line 5501) | function defaultDisplay( nodeName ) { function curCSS (line 5548) | function curCSS( elem, name, computed ) { function addGetHookIf (line 5596) | function addGetHookIf( conditionFn, hookFn ) { function computePixelPositionAndBoxSizingReliable (line 5636) | function computePixelPositionAndBoxSizingReliable() { function vendorPropName (line 5741) | function vendorPropName( style, name ) { function setPositiveNumber (line 5763) | function setPositiveNumber( elem, value, subtract ) { function augmentWidthOrHeight (line 5771) | function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { function getWidthOrHeight (line 5810) | function getWidthOrHeight( elem, name, extra ) { function showHide (line 5854) | function showHide( elements, show ) { function Tween (line 6152) | function Tween( elem, options, prop, end, easing ) { function createFxNow (line 6321) | function createFxNow() { function genFx (line 6329) | function genFx( type, includeWidth ) { function createTween (line 6349) | function createTween( value, prop, animation ) { function defaultPrefilter (line 6363) | function defaultPrefilter( elem, props, opts ) { function propFilter (line 6496) | function propFilter( props, specialEasing ) { function Animation (line 6533) | function Animation( elem, properties, options ) { function addToPrefiltersOrTransports (line 7581) | function addToPrefiltersOrTransports( structure ) { function inspectPrefiltersOrTransports (line 7613) | function inspectPrefiltersOrTransports( structure, options, originalOpti... function ajaxExtend (line 7640) | function ajaxExtend( target, src ) { function ajaxHandleResponses (line 7660) | function ajaxHandleResponses( s, jqXHR, responses ) { function ajaxConvert (line 7716) | function ajaxConvert( s, response, jqXHR, isSuccess ) { function done (line 8174) | function done( status, nativeStatusText, responses, headers ) { function buildParams (line 8418) | function buildParams( prefix, obj, traditional, add ) { function getWindow (line 8912) | function getWindow( elem ) { FILE: bower_components/jquery/src/ajax.js function addToPrefiltersOrTransports (line 50) | function addToPrefiltersOrTransports( structure ) { function inspectPrefiltersOrTransports (line 82) | function inspectPrefiltersOrTransports( structure, options, originalOpti... function ajaxExtend (line 109) | function ajaxExtend( target, src ) { function ajaxHandleResponses (line 129) | function ajaxHandleResponses( s, jqXHR, responses ) { function ajaxConvert (line 185) | function ajaxConvert( s, response, jqXHR, isSuccess ) { function done (line 643) | function done( status, nativeStatusText, responses, headers ) { FILE: bower_components/jquery/src/callbacks.js function createOptions (line 10) | function createOptions( options ) { FILE: bower_components/jquery/src/core.js function isArraylike (line 480) | function isArraylike( obj ) { FILE: bower_components/jquery/src/core/ready.js function completed (line 64) | function completed() { FILE: bower_components/jquery/src/css.js function vendorPropName (line 39) | function vendorPropName( style, name ) { function setPositiveNumber (line 61) | function setPositiveNumber( elem, value, subtract ) { function augmentWidthOrHeight (line 69) | function augmentWidthOrHeight( elem, name, extra, isBorderBox, styles ) { function getWidthOrHeight (line 108) | function getWidthOrHeight( elem, name, extra ) { function showHide (line 152) | function showHide( elements, show ) { FILE: bower_components/jquery/src/css/addGetHookIf.js function addGetHookIf (line 3) | function addGetHookIf( conditionFn, hookFn ) { FILE: bower_components/jquery/src/css/curCSS.js function curCSS (line 9) | function curCSS( elem, name, computed ) { FILE: bower_components/jquery/src/css/defaultDisplay.js function actualDisplay (line 15) | function actualDisplay( name, doc ) { function defaultDisplay (line 37) | function defaultDisplay( nodeName ) { FILE: bower_components/jquery/src/css/support.js function computePixelPositionAndBoxSizingReliable (line 28) | function computePixelPositionAndBoxSizingReliable() { FILE: bower_components/jquery/src/data.js function dataAttr (line 22) | function dataAttr( elem, key, data ) { FILE: bower_components/jquery/src/data/Data.js function Data (line 7) | function Data() { FILE: bower_components/jquery/src/effects.js function createFxNow (line 75) | function createFxNow() { function genFx (line 83) | function genFx( type, includeWidth ) { function createTween (line 103) | function createTween( value, prop, animation ) { function defaultPrefilter (line 117) | function defaultPrefilter( elem, props, opts ) { function propFilter (line 250) | function propFilter( props, specialEasing ) { function Animation (line 287) | function Animation( elem, properties, options ) { FILE: bower_components/jquery/src/effects/Tween.js function Tween (line 6) | function Tween( elem, options, prop, end, easing ) { FILE: bower_components/jquery/src/event.js function returnTrue (line 21) | function returnTrue() { function returnFalse (line 25) | function returnFalse() { function safeActiveElement (line 29) | function safeActiveElement() { FILE: bower_components/jquery/src/manipulation.js function manipulationTarget (line 51) | function manipulationTarget( elem, content ) { function disableScript (line 61) | function disableScript( elem ) { function restoreScript (line 65) | function restoreScript( elem ) { function setGlobalEval (line 78) | function setGlobalEval( elems, refElements ) { function cloneCopyEvent (line 89) | function cloneCopyEvent( src, dest ) { function getAll (line 123) | function getAll( context, tag ) { function fixInput (line 134) | function fixInput( src, dest ) { FILE: bower_components/jquery/src/offset.js function getWindow (line 20) | function getWindow( elem ) { FILE: bower_components/jquery/src/serialize.js function buildParams (line 15) | function buildParams( prefix, obj, traditional, add ) { FILE: bower_components/jquery/src/sizzle/dist/sizzle.js function Sizzle (line 197) | function Sizzle( selector, context, results, seed ) { function createCache (line 311) | function createCache() { function markFunction (line 329) | function markFunction( fn ) { function assert (line 338) | function assert( fn ) { function addHandle (line 360) | function addHandle( attrs, handler ) { function siblingCheck (line 375) | function siblingCheck( a, b ) { function createInputPseudo (line 402) | function createInputPseudo( type ) { function createButtonPseudo (line 413) | function createButtonPseudo( type ) { function createPositionalPseudo (line 424) | function createPositionalPseudo( fn ) { function testContext (line 447) | function testContext( context ) { function setFilters (line 1456) | function setFilters() {} function toSelector (line 1527) | function toSelector( tokens ) { function addCombinator (line 1537) | function addCombinator( matcher, combinator, base ) { function elementMatcher (line 1590) | function elementMatcher( matchers ) { function multipleContexts (line 1604) | function multipleContexts( selector, contexts, results ) { function condense (line 1613) | function condense( unmatched, map, filter, context, xml ) { function setMatcher (line 1634) | function setMatcher( preFilter, selector, matcher, postFilter, postFinde... function matcherFromTokens (line 1727) | function matcherFromTokens( tokens ) { function matcherFromGroupMatchers (line 1785) | function matcherFromGroupMatchers( elementMatchers, setMatchers ) { FILE: bower_components/jquery/src/traversing.js function sibling (line 127) | function sibling( cur, dir ) { FILE: bower_components/jquery/src/traversing/findFilter.js function winnow (line 11) | function winnow( elements, qualifier, not ) { FILE: bower_components/jqueryui/jquery-ui.js function focusable (line 94) | function focusable( element, isTabIndexNotNaN ) { function visible (line 115) | function visible( element ) { function reduce (line 157) | function reduce( elem, size, border, margin ) { function handlerProxy (line 716) | function handlerProxy() { function handlerProxy (line 758) | function handlerProxy() { function getOffsets (line 1071) | function getOffsets( offsets, width, height ) { function parseCss (line 1078) | function parseCss( element, property ) { function getDimensions (line 1082) | function getDimensions( elem ) { function datepicker_getZindex (line 3784) | function datepicker_getZindex( elem ) { function Datepicker (line 3811) | function Datepicker() { function datepicker_bindHover (line 5754) | function datepicker_bindHover(dpDiv) { function datepicker_handleMouseover (line 5768) | function datepicker_handleMouseover() { function datepicker_extendRemove (line 5782) | function datepicker_extendRemove(target, props) { function checkFocus (line 8386) | function checkFocus() { function filteredUi (line 8570) | function filteredUi( ui ) { function filteredUi (line 8617) | function filteredUi( ui ) { function isOverAxis (line 9161) | function isOverAxis( x, reference, size ) { function clamp (line 9517) | function clamp( value, prop, allowEmpty ) { function stringParse (line 9543) | function stringParse( string ) { function hue2rgb (line 9793) | function hue2rgb( p, q, h ) { function getElementStyles (line 10059) | function getElementStyles( elem ) { function styleDifference (line 10086) | function styleDifference( oldStyle, newStyle ) { function _normalizeArguments (line 10406) | function _normalizeArguments( effect, options, speed, callback ) { function standardAnimationOption (line 10458) | function standardAnimationOption( option ) { function run (line 10503) | function run( next ) { function childComplete (line 10983) | function childComplete() { function animComplete (line 11032) | function animComplete() { function addItems (line 14129) | function addItems() { function delayEvent (line 14710) | function delayEvent( type, instance, container ) { function spinner_modifier (line 14799) | function spinner_modifier( fn ) { function checkFocus (line 14923) | function checkFocus() { function constrain (line 15517) | function constrain() { function complete (line 15893) | function complete() { function show (line 15898) | function show() { function position (line 16428) | function position( event ) { FILE: bower_components/jqueryui/ui/core.js function focusable (line 88) | function focusable( element, isTabIndexNotNaN ) { function visible (line 109) | function visible( element ) { function reduce (line 151) | function reduce( elem, size, border, margin ) { FILE: bower_components/jqueryui/ui/datepicker.js function datepicker_getZindex (line 30) | function datepicker_getZindex( elem ) { function Datepicker (line 57) | function Datepicker() { function datepicker_bindHover (line 2000) | function datepicker_bindHover(dpDiv) { function datepicker_handleMouseover (line 2014) | function datepicker_handleMouseover() { function datepicker_extendRemove (line 2028) | function datepicker_extendRemove(target, props) { FILE: bower_components/jqueryui/ui/dialog.js function checkFocus (line 313) | function checkFocus() { function filteredUi (line 497) | function filteredUi( ui ) { function filteredUi (line 544) | function filteredUi( ui ) { FILE: bower_components/jqueryui/ui/droppable.js function isOverAxis (line 228) | function isOverAxis( x, reference, size ) { FILE: bower_components/jqueryui/ui/effect-explode.js function childComplete (line 46) | function childComplete() { function animComplete (line 95) | function animComplete() { FILE: bower_components/jqueryui/ui/effect.js function clamp (line 181) | function clamp( value, prop, allowEmpty ) { function stringParse (line 207) | function stringParse( string ) { function hue2rgb (line 457) | function hue2rgb( p, q, h ) { function getElementStyles (line 723) | function getElementStyles( elem ) { function styleDifference (line 750) | function styleDifference( oldStyle, newStyle ) { function _normalizeArguments (line 1070) | function _normalizeArguments( effect, options, speed, callback ) { function standardAnimationOption (line 1122) | function standardAnimationOption( option ) { function run (line 1167) | function run( next ) { FILE: bower_components/jqueryui/ui/position.js function getOffsets (line 37) | function getOffsets( offsets, width, height ) { function parseCss (line 44) | function parseCss( element, property ) { function getDimensions (line 48) | function getDimensions( elem ) { FILE: bower_components/jqueryui/ui/sortable.js function addItems (line 658) | function addItems() { function delayEvent (line 1239) | function delayEvent( type, instance, container ) { FILE: bower_components/jqueryui/ui/spinner.js function spinner_modifier (line 28) | function spinner_modifier( fn ) { function checkFocus (line 152) | function checkFocus() { FILE: bower_components/jqueryui/ui/tabs.js function constrain (line 246) | function constrain() { function complete (line 622) | function complete() { function show (line 627) | function show() { FILE: bower_components/jqueryui/ui/tooltip.js function position (line 286) | function position( event ) { FILE: bower_components/jqueryui/ui/widget.js function handlerProxy (line 416) | function handlerProxy() { function handlerProxy (line 458) | function handlerProxy() { FILE: database/migrations/2015_04_10_210346_create_users_table.php class CreateUsersTable (line 6) | class CreateUsersTable extends Migration { method up (line 13) | public function up() method down (line 37) | public function down() FILE: database/migrations/2015_04_12_221129_create_feeds_table.php class CreateFeedsTable (line 6) | class CreateFeedsTable extends Migration { method up (line 13) | public function up() method down (line 32) | public function down() FILE: database/migrations/2015_04_13_001524_create_friends_table.php class CreateFriendsTable (line 6) | class CreateFriendsTable extends Migration { method up (line 13) | public function up() method down (line 29) | public function down() FILE: database/migrations/2015_04_15_160303_create_friend_requests_table.php class CreateFriendRequestsTable (line 6) | class CreateFriendRequestsTable extends Migration { method up (line 13) | public function up() method down (line 30) | public function down() FILE: database/migrations/2015_04_20_150638_create_messages_table.php class CreateMessagesTable (line 6) | class CreateMessagesTable extends Migration { method up (line 13) | public function up() method down (line 31) | public function down() FILE: database/migrations/2015_04_20_151158_create_message_user_table.php class CreateMessageUserTable (line 6) | class CreateMessageUserTable extends Migration { method up (line 13) | public function up() method down (line 29) | public function down() FILE: database/migrations/2015_04_20_163654_create_message_responses_table.php class CreateMessageResponsesTable (line 6) | class CreateMessageResponsesTable extends Migration { method up (line 13) | public function up() method down (line 33) | public function down() FILE: database/migrations/2015_04_20_165854_create_message_response_user_table.php class CreateMessageResponseUserTable (line 6) | class CreateMessageResponseUserTable extends Migration { method up (line 13) | public function up() method down (line 30) | public function down() FILE: database/seeds/DatabaseSeeder.php class DatabaseSeeder (line 7) | class DatabaseSeeder extends Seeder { method run (line 34) | public function run() method cleanDatabase (line 48) | public function cleanDatabase() FILE: database/seeds/FeedTableSeeder.php class FeedTableSeeder (line 7) | class FeedTableSeeder extends Seeder { method run (line 13) | public function run() FILE: database/seeds/FriendRequestTableSeeder.php class FriendRequestTableSeeder (line 8) | class FriendRequestTableSeeder extends Seeder { method run (line 14) | public function run() FILE: database/seeds/MessageResponseUserTableSeeder.php class MessageResponseUserTableSeeder (line 5) | class MessageResponseUserTableSeeder extends Seeder { method run (line 12) | public function run() FILE: database/seeds/MessageResponsesTableSeeder.php class MessageResponsesTableSeeder (line 7) | class MessageResponsesTableSeeder extends Seeder { method run (line 13) | public function run() FILE: database/seeds/MessageUserTableSeeder.php class MessageUserTableSeeder (line 5) | class MessageUserTableSeeder extends Seeder { method run (line 11) | public function run() FILE: database/seeds/MessagesTableSeeder.php class MessagesTableSeeder (line 6) | class MessagesTableSeeder extends Seeder { method run (line 12) | public function run() FILE: database/seeds/UserTableSeeder.php class UserTableSeeder (line 6) | class UserTableSeeder extends Seeder { method run (line 12) | public function run() FILE: gulpfile.js function errorLog (line 10) | function errorLog(error) FILE: main.js function handleFormSubmisions (line 182) | function handleFormSubmisions() function handleAjaxRequests (line 301) | function handleAjaxRequests() function getChatConversationData (line 608) | function getChatConversationData(userId) function handleChatMessages (line 621) | function handleChatMessages(params) function openChatBox (line 669) | function openChatBox(params) function generateChatForm (line 700) | function generateChatForm(friendProfileImage, friendName, friendId, marg... FILE: public/js/libs.js function n (line 1) | function n(e){var t=e.length,n=Z.type(e);return"function"===n||Z.isWindo... function r (line 1) | function r(e,t,n){if(Z.isFunction(t))return Z.grep(e,function(e,r){retur... function i (line 1) | function i(e,t){for(;(e=e[t])&&1!==e.nodeType;);return e} function o (line 1) | function o(e){var t=ht[e]={};return Z.each(e.match(dt)||[],function(e,n)... function s (line 1) | function s(){J.removeEventListener("DOMContentLoaded",s,!1),e.removeEven... function a (line 1) | function a(){Object.defineProperty(this.cache={},0,{get:function(){retur... function u (line 1) | function u(e,t,n){var r;if(void 0===n&&1===e.nodeType)if(r="data-"+t.rep... function l (line 1) | function l(){return!0} function c (line 1) | function c(){return!1} function f (line 1) | function f(){try{return J.activeElement}catch(e){}} function p (line 1) | function p(e,t){return Z.nodeName(e,"table")&&Z.nodeName(11!==t.nodeType... function d (line 1) | function d(e){return e.type=(null!==e.getAttribute("type"))+"/"+e.type,e} function h (line 1) | function h(e){var t=Pt.exec(e.type);return t?e.type=t[1]:e.removeAttribu... function g (line 1) | function g(e,t){for(var n=0,r=e.length;r>n;n++)vt.set(e[n],"globalEval",... function m (line 1) | function m(e,t){var n,r,i,o,s,a,u,l;if(1===t.nodeType){if(vt.hasData(e)&... function v (line 1) | function v(e,t){var n=e.getElementsByTagName?e.getElementsByTagName(t||"... function y (line 1) | function y(e,t){var n=t.nodeName.toLowerCase();"input"===n&&Nt.test(e.ty... function x (line 1) | function x(t,n){var r,i=Z(n.createElement(t)).appendTo(n.body),o=e.getDe... function b (line 1) | function b(e){var t=J,n=$t[e];return n||(n=x(e,t),"none"!==n&&n||(Wt=(Wt... function w (line 1) | function w(e,t,n){var r,i,o,s,a=e.style;return n=n||_t(e),n&&(s=n.getPro... function T (line 1) | function T(e,t){return{get:function(){return e()?void delete this.get:(t... function C (line 1) | function C(e,t){if(t in e)return t;for(var n=t[0].toUpperCase()+t.slice(... function N (line 1) | function N(e,t,n){var r=Xt.exec(t);return r?Math.max(0,r[1]-(n||0))+(r[2... function k (line 1) | function k(e,t,n,r,i){for(var o=n===(r?"border":"content")?4:"width"===t... function E (line 1) | function E(e,t,n){var r=!0,i="width"===t?e.offsetWidth:e.offsetHeight,o=... function S (line 1) | function S(e,t){for(var n,r,i,o=[],s=0,a=e.length;a>s;s++)r=e[s],r.style... function D (line 1) | function D(e,t,n,r,i){return new D.prototype.init(e,t,n,r,i)} function j (line 1) | function j(){return setTimeout(function(){Qt=void 0}),Qt=Z.now()} function A (line 1) | function A(e,t){var n,r=0,i={height:e};for(t=t?1:0;4>r;r+=2-t)n=Tt[r],i[... function L (line 1) | function L(e,t,n){for(var r,i=(nn[t]||[]).concat(nn["*"]),o=0,s=i.length... function q (line 1) | function q(e,t,n){var r,i,o,s,a,u,l,c,f=this,p={},d=e.style,h=e.nodeType... function H (line 1) | function H(e,t){var n,r,i,o,s;for(n in e)if(r=Z.camelCase(n),i=t[r],o=e[... function O (line 1) | function O(e,t,n){var r,i,o=0,s=tn.length,a=Z.Deferred().always(function... function F (line 1) | function F(e){return function(t,n){"string"!=typeof t&&(n=t,t="*");var r... function P (line 1) | function P(e,t,n,r){function i(a){var u;return o[a]=!0,Z.each(e[a]||[],f... function R (line 1) | function R(e,t){var n,r,i=Z.ajaxSettings.flatOptions||{};for(n in t)void... function M (line 1) | function M(e,t,n){for(var r,i,o,s,a=e.contents,u=e.dataTypes;"*"===u[0];... function W (line 1) | function W(e,t,n,r){var i,o,s,a,u,l={},c=e.dataTypes.slice();if(c[1])for... function $ (line 1) | function $(e,t,n,r){var i;if(Z.isArray(t))Z.each(t,function(t,i){n||kn.t... function I (line 1) | function I(e){return Z.isWindow(e)?e:9===e.nodeType&&e.defaultView} function t (line 1) | function t(e,t,n,r){var i,o,s,a,u,l,f,d,h,g;if((t?t.ownerDocument||t:$)!... function n (line 1) | function n(){function e(n,r){return t.push(n+" ")>T.cacheLength&&delete ... function r (line 1) | function r(e){return e[W]=!0,e} function i (line 1) | function i(e){var t=q.createElement("div");try{return!!e(t)}catch(n){ret... function o (line 1) | function o(e,t){for(var n=e.split("|"),r=e.length;r--;)T.attrHandle[n[r]... function s (line 1) | function s(e,t){var n=t&&e,r=n&&1===e.nodeType&&1===t.nodeType&&(~t.sour... function a (line 1) | function a(e){return function(t){var n=t.nodeName.toLowerCase();return"i... function u (line 1) | function u(e){return function(t){var n=t.nodeName.toLowerCase();return("... function l (line 1) | function l(e){return r(function(t){return t=+t,r(function(n,r){for(var i... function c (line 1) | function c(e){return e&&"undefined"!=typeof e.getElementsByTagName&&e} function f (line 1) | function f(){} function p (line 1) | function p(e){for(var t=0,n=e.length,r="";n>t;t++)r+=e[t].value;return r} function d (line 1) | function d(e,t,n){var r=t.dir,i=n&&"parentNode"===r,o=B++;return t.first... function h (line 1) | function h(e){return e.length>1?function(t,n,r){for(var i=e.length;i--;)... function g (line 1) | function g(e,n,r){for(var i=0,o=n.length;o>i;i++)t(e,n[i],r);return r} function m (line 1) | function m(e,t,n,r,i){for(var o,s=[],a=0,u=e.length,l=null!=t;u>a;a++)(o... function v (line 1) | function v(e,t,n,i,o,s){return i&&!i[W]&&(i=v(i)),o&&!o[W]&&(o=v(o,s)),r... function y (line 1) | function y(e){for(var t,n,r,i=e.length,o=T.relative[e[0].type],s=o||T.re... function x (line 1) | function x(e,n){var i=n.length>0,o=e.length>0,s=function(r,s,a,u,l){var ... function t (line 2) | function t(){s.style.cssText="-webkit-box-sizing:border-box;-moz-box-siz... function n (line 3) | function n(e,t,n,s){var u,c,v,y,b,T=t;2!==x&&(x=2,a&&clearTimeout(a),r=v... function e (line 4) | function e(e,s){var n,o,a,r=e.nodeName.toLowerCase();return"area"===r?(n... function i (line 4) | function i(e){return t.expr.filters.visible(e)&&!t(e).parents().addBack(... function s (line 4) | function s(t){for(var e,i;t.length&&t[0]!==document;){if(e=t.css("positi... function n (line 4) | function n(){this._curInst=null,this._keyEvent=!1,this._disabledInputs=[... function o (line 4) | function o(e){var i="button, .ui-datepicker-prev, .ui-datepicker-next, .... function a (line 4) | function a(){t.datepicker._isDisabledDatepicker(v.inline?v.dpDiv.parent(... function r (line 4) | function r(e,i){t.extend(e,i);for(var s in i)null==i[s]&&(e[s]=i[s]);ret... function h (line 4) | function h(t){return function(){var e=this.element.val();t.apply(this,ar... function s (line 4) | function s(e,i,s,o){return t.each(n,function(){i-=parseFloat(t.css(e,"pa... function r (line 4) | function r(){return e||o.options.disabled!==!0&&!t(this).hasClass("ui-st... function i (line 4) | function i(){return("string"==typeof t?s[t]:t).apply(s,arguments)} function e (line 4) | function e(t,e,i){return[parseFloat(t[0])*(p.test(t[0])?e/100:1),parseFl... function i (line 4) | function i(e,i){return parseInt(t.css(e,i),10)||0} function s (line 4) | function s(e){var i=e[0];return 9===i.nodeType?{width:e.width(),height:e... function i (line 7) | function i(){var e=this.document[0].activeElement,i=this.uiDialog[0]===e... function e (line 8) | function e(t){return{position:t.position,offset:t.offset}} function e (line 8) | function e(t){return{originalPosition:t.originalPosition,originalSize:t.... function t (line 8) | function t(t,e,i){return t>=e&&e+i>t} function i (line 8) | function i(t,e,i){var s=c[e.type]||{};return null==t?i||!e.def?null:e.de... function s (line 8) | function s(e){var i=l(),s=i._rgba=[];return e=e.toLowerCase(),f(h,functi... function n (line 8) | function n(t,e,i){return i=(i+1)%1,1>6*i?t+(e-t)*i*6:1>2*i?e:2>3*i?t+(e-... function e (line 8) | function e(e){var i,s,n=e.ownerDocument.defaultView?e.ownerDocument.defa... function i (line 8) | function i(e,i){var s,o,a={};for(s in i)o=i[s],e[s]!==o&&(n[s]||(t.fx.st... function e (line 8) | function e(e,i,s,n){return t.isPlainObject(e)&&(i=e,e=e.effect),e={effec... function i (line 8) | function i(e){return!e||"number"==typeof e||t.fx.speeds[e]?!0:"string"!=... function i (line 8) | function i(e){function i(){t.isFunction(o)&&o.call(n[0]),t.isFunction(e)... function s (line 8) | function s(){b.push(this),b.length===c*d&&n()} function n (line 8) | function n(){p.css({visibility:"visible"}),t(b).remove(),m||p.hide(),i()} function i (line 10) | function i(){r.push(this)} function i (line 10) | function i(t,e,i){return function(s){i._trigger(t,s,e._uiHash(e))}} function i (line 10) | function i(){var t=this.element[0]===this.document[0].activeElement;t||(... function s (line 10) | function s(){return e>n&&(e=0),0>e&&(e=n),e} function s (line 11) | function s(){o.running=!1,o._trigger("activate",e,i)} function n (line 11) | function n(){i.newTab.closest("li").addClass("ui-tabs-active ui-state-ac... function n (line 11) | function n(t){l.of=t,a.is(":hidden")||a.position(l)} function e (line 12) | function e(){var t=document.createElement("bootstrap"),e={WebkitTransiti... function e (line 12) | function e(e){return this.each(function(){var i=t(this),n=i.data("bs.ale... function i (line 12) | function i(){a.detach().trigger("closed.bs.alert").remove()} function e (line 12) | function e(e){return this.each(function(){var o=t(this),n=o.data("bs.but... function e (line 12) | function e(e){return this.each(function(){var o=t(this),n=o.data("bs.car... function e (line 12) | function e(e){var i,o=e.attr("data-target")||(i=e.attr("href"))&&i.repla... function i (line 12) | function i(e){return this.each(function(){var i=t(this),n=i.data("bs.col... function e (line 12) | function e(e){e&&3===e.which||(t(n).remove(),t(s).each(function(){var o=... function i (line 12) | function i(e){var i=e.attr("data-target");i||(i=e.attr("href"),i=i&&/#[A... function o (line 12) | function o(e){return this.each(function(){var i=t(this),o=i.data("bs.dro... function e (line 12) | function e(e,o){return this.each(function(){var n=t(this),s=n.data("bs.m... function e (line 12) | function e(e){return this.each(function(){var o=t(this),n=o.data("bs.too... function o (line 12) | function o(){"in"!=n.hoverState&&s.detach(),n.$element.removeAttr("aria-... function e (line 12) | function e(e){return this.each(function(){var o=t(this),n=o.data("bs.pop... function e (line 12) | function e(i,o){this.$body=t(document.body),this.$scrollElement=t(t(i).i... function i (line 12) | function i(i){return this.each(function(){var o=t(this),n=o.data("bs.scr... function e (line 12) | function e(e){return this.each(function(){var o=t(this),n=o.data("bs.tab... function s (line 13) | function s(){a.removeClass("active").find("> .dropdown-menu > .active").... function e (line 13) | function e(e){return this.each(function(){var o=t(this),n=o.data("bs.aff... function t (line 14) | function t(t,i){null==i&&(i={}),this.$element=e(t),this.options=e.extend... function e (line 15) | function e(){var e=a(this),o=r.settings;return isNaN(e.datetime)||(0==o.... function a (line 15) | function a(e){if(e=t(e),!e.data("timeago")){e.data("timeago",{datetime:r... function i (line 15) | function i(t){return r.inWords(n(t))} function n (line 15) | function n(t){return(new Date).getTime()-t.getTime()} function a (line 15) | function a(a,n){var r=t.isFunction(a)?a(n,e):a,o=i.numbers&&i.numbers[n]... FILE: public/js/main.js function e (line 1) | function e(){var e=$(this),a=e.prop("action"),t=e.find('input[name="_met... function a (line 1) | function a(){var e=$(this),a=e.attr("data-userid"),t=e.attr("href"),s=e.... function t (line 1) | function t(e){if(localStorage){var a=[];return a=JSON.parse(sessionStora... function s (line 1) | function s(e){var a=t(e.friendId);a?(a.messages.push(e.message),sessionS... function d (line 1) | function d(e){var a=e.friendProfileImage,t=e.friendName,s=e.friendId,i="... function n (line 1) | function n(e,a,t,d){var n=$("
").attr("id","chatwithuser"+t).c... FILE: tests/ExampleTest.php class ExampleTest (line 3) | class ExampleTest extends TestCase { method testBasicExample (line 10) | public function testBasicExample() FILE: tests/TestCase.php class TestCase (line 6) | class TestCase extends IntegrationTest { method createApplication (line 15) | public function createApplication() FILE: tests/commands/TestCreateFeedCommand.php class TestCreateFeedCommand (line 7) | class TestCreateFeedCommand extends TestCase method testHandleReturnsTheNewlyCreatedFeed (line 9) | public function testHandleReturnsTheNewlyCreatedFeed() FILE: tests/commands/TestCreateFriendRequestCommand.php class TestCreateFriendRequestCommand (line 7) | class TestCreateFriendRequestCommand extends TestCase method testHandleReturnsTrueOnSuccesfulFriendRequest (line 9) | public function testHandleReturnsTrueOnSuccesfulFriendRequest() FILE: tests/commands/TestCreateMessageCommand.php class TestCreateMessageCommand (line 9) | class TestCreateMessageCommand extends TestCase method testHandleReturnsTrue (line 11) | public function testHandleReturnsTrue() FILE: tests/commands/TestLoginUserCommand.php class TestLoginCommand (line 6) | class TestLoginCommand extends TestCase method testHandleReturnsTrueOnsuccesfulLogin (line 8) | public function testHandleReturnsTrueOnsuccesfulLogin() method testHandleReturnsFalseOnFailedLogin (line 24) | public function testHandleReturnsFalseOnFailedLogin() FILE: tests/commands/TestLogoutUserCommand.php class TestLogoutUserCommand (line 6) | class TestLogoutUserCommand extends TestCase method testHandleReturnsLogout (line 8) | public function testHandleReturnsLogout() FILE: tests/commands/TestRegisterUserCommand.php class TestRegisterUserCommand (line 5) | class TestRegisterUserCommand method testHandleReturnsUserAfterRegisteringSuccessfully (line 7) | public function testHandleReturnsUserAfterRegisteringSuccessfully() FILE: tests/commands/TestRemoveFriendCommand.php class TestRemoveFriendCommand (line 7) | class TestRemoveFriendCommand extends TestCase method testHandleReturnsTrue (line 9) | public function testHandleReturnsTrue() FILE: tests/controllers/TestFeedController.php class TestFeedController (line 9) | class TestFeedController extends TestCase method testIndexReturnsViewInstance (line 13) | public function testIndexReturnsViewInstance() method testStoreReturnsJsonResponseInstance (line 30) | public function testStoreReturnsJsonResponseInstance() FILE: tests/controllers/TestFriendController.php class TestFriendController (line 9) | class TestFriendController extends TestCase method testIndexReturnsViewInstance (line 11) | public function testIndexReturnsViewInstance() method testStoreReturnsJsonResponseInstance (line 29) | public function testStoreReturnsJsonResponseInstance() method testDestroyReturnsJsonResponseInstance (line 49) | public function testDestroyReturnsJsonResponseInstance() FILE: tests/controllers/TestFriendRequestController.php class TestFriendRequestController (line 9) | class TestFriendRequestController extends TestCase method testStoreReturnsJsonReponseInstance (line 11) | public function testStoreReturnsJsonReponseInstance() method testIndexReturnsViewInstance (line 31) | public function testIndexReturnsViewInstance() FILE: tests/controllers/TestMessageController.php class TestMessageController (line 7) | class TestMessageController extends TestCase method testCreateReturnsViewInstance (line 9) | public function testCreateReturnsViewInstance() FILE: tests/controllers/TestRegistrationController.php class TestRegistrationController (line 6) | class TestRegistrationController extends TestCase method setUpBeforeClass (line 11) | public static function setUpBeforeClass() method tearDownAfterClass (line 16) | public static function tearDownAfterClass() method testCreateReturnsViewInstance (line 22) | public function testCreateReturnsViewInstance() FILE: tests/controllers/TestSessionController.php class testSessionController (line 8) | class testSessionController extends TestCase method setUpBeforeClass (line 13) | public static function setUpBeforeClass() method tearDownAfterClass (line 18) | public static function tearDownAfterClass() method testStoreReturnsRedirectResponseInstance (line 23) | public function testStoreReturnsRedirectResponseInstance() method testStoreReturnsRedirectResponseInstanceLoginWrong (line 36) | public function testStoreReturnsRedirectResponseInstanceLoginWrong() method testDestroyReturnsJsonResponseInstance (line 48) | public function testDestroyReturnsJsonResponseInstance() FILE: tests/controllers/TestUserController.php class TestUserController (line 9) | class TestUserController extends testCase method testIndexReturnsViewInstance (line 11) | public function testIndexReturnsViewInstance() method testShowReturnsViewInstance (line 28) | public function testShowReturnsViewInstance() FILE: tests/events/TestFriendRequestWasSent.php class TestFriendRequestWasSent (line 6) | class TestFriendRequestWasSent extends TestCase method testBothUserObjectsExistInClass (line 8) | public function testBothUserObjectsExistInClass() FILE: tests/events/TestUserWasRegistered.php class TestUserWasRegistered (line 6) | class TestUserWasRegistered extends TestCase method testUserObjectExistinClass (line 8) | public function testUserObjectExistinClass() FILE: tests/functional/FriendRequestTest.php class FriendRequestTest (line 5) | class FriendRequestTest extends TestCase method testAddNewFriendRequest (line 7) | public function testAddNewFriendRequest() FILE: tests/functional/LoginTest.php class LoginTest (line 5) | class LoginTest extends TestCase method testEmptyEmailShowsErrorOnSubmit (line 8) | public function testEmptyEmailShowsErrorOnSubmit() method testInvalidEmailShowsErrorOnSubmit (line 16) | public function testInvalidEmailShowsErrorOnSubmit() method testEmptyPasswordShowsErrorOnSubmit (line 24) | public function testEmptyPasswordShowsErrorOnSubmit() method testLoginWithWrongCedentialsShowsError (line 32) | public function testLoginWithWrongCedentialsShowsError() FILE: tests/functional/MessagesTest.php class MessagesTest (line 7) | class MessagesTest extends TestCase method testSendingAmessageToAnotherUser (line 9) | public function testSendingAmessageToAnotherUser() FILE: tests/functional/PostFeedTest.php class PostFeedTest (line 5) | class PostFeedTest extends TestCase method testSuccesfulPostFeed (line 7) | public function testSuccesfulPostFeed() FILE: tests/functional/RegistrationTest.php class RegistrationTest (line 5) | class RegistrationTest extends TestCase method testEmptyFirstnameShowsErrorOnSubmit (line 7) | public function testEmptyFirstnameShowsErrorOnSubmit() method testFirstNameTooShortShowsErrorOnSubmit (line 27) | public function testFirstNameTooShortShowsErrorOnSubmit() method testFirstNameContainNumberShowsErrorOnSubmit (line 47) | public function testFirstNameContainNumberShowsErrorOnSubmit() method testLastNameEmptyShowsErrorOnSubmit (line 67) | public function testLastNameEmptyShowsErrorOnSubmit() method testLastNameTooShortShowsErrorOnSubmit (line 87) | public function testLastNameTooShortShowsErrorOnSubmit() method testLastNameContainNumberShowsErrorOnSubmit (line 107) | public function testLastNameContainNumberShowsErrorOnSubmit() method testEmptyEmailShowsErrorOnSubmit (line 127) | public function testEmptyEmailShowsErrorOnSubmit() method testTakenEmailShowsErrorOnSubmit (line 147) | public function testTakenEmailShowsErrorOnSubmit() method testEmptyPasswordShowsErrorOnSubmit (line 170) | public function testEmptyPasswordShowsErrorOnSubmit() method testConfirmPasswordShowsErrorOnSubmit (line 190) | public function testConfirmPasswordShowsErrorOnSubmit() method testPasswordTooShortShowsErrorOnSubmit (line 210) | public function testPasswordTooShortShowsErrorOnSubmit() method testEmptyPasswordConfirmationShowsErrorOnSubmit (line 230) | public function testEmptyPasswordConfirmationShowsErrorOnSubmit() method testEmptyYearShowsErrorOnSubmit (line 250) | public function testEmptyYearShowsErrorOnSubmit() method testNumericYearShowsErrorOnSubmit (line 270) | public function testNumericYearShowsErrorOnSubmit() method testYearBeforeCurrentShowsErrorOnSubmit (line 290) | public function testYearBeforeCurrentShowsErrorOnSubmit() method testEmptyImageShowsErrorOnSubmit (line 310) | public function testEmptyImageShowsErrorOnSubmit() FILE: tests/handlers/TestEmailFriendRequest.php class TestEmailFriendRequest (line 6) | class TestEmailFriendRequest extends TestCase method testHandleReturnsTrueAfterFriendRequestWasSent (line 8) | public function testHandleReturnsTrueAfterFriendRequestWasSent() FILE: tests/handlers/TestEmailRegistrationConfirmation.php class TestEmailRegistrationConfirmation (line 6) | class TestEmailRegistrationConfirmation extends TestCase method testHandleReturnsTrueAfterUserWasRegistered (line 8) | public function testHandleReturnsTrueAfterUserWasRegistered() FILE: tests/repositories/TestFeedRepository.php class TestFeedRepository (line 7) | class TestFeedRepository extends TestCase method testGetPublishedByUserAndFriendsReturnArrayWithResults (line 10) | public function testGetPublishedByUserAndFriendsReturnArrayWithResults() method testGetPublishedByUserReturnArrayWithResults (line 25) | public function testGetPublishedByUserReturnArrayWithResults() method testGetPublishedByUserAndFriendsAjaxReturnArrayWithResults (line 40) | public function testGetPublishedByUserAndFriendsAjaxReturnArrayWithRes... FILE: tests/repositories/TestFriendRequestRepository.php class TestFriendRequestRepository (line 7) | class TestFriendRequestRepository extends TestCase method testGetIdsThatSentRequestToCurrentUser (line 10) | public function testGetIdsThatSentRequestToCurrentUser() FILE: tests/repositories/TestMessageRepository.php class TestMessageRepository (line 7) | class TestMessageRepository extends TestCase method testFindByidReTurnsMessageInstance (line 9) | public function testFindByidReTurnsMessageInstance() method testFindByIdWithResponsesReturnsCollection (line 21) | public function testFindByIdWithResponsesReturnsCollection() FILE: tests/repositories/TestUserRepository.php class TestUserRepository (line 6) | class TestUserRepository extends TestCase method testGetPaginatedReturnsACollectionSuccesfully (line 9) | public function testGetPaginatedReturnsACollectionSuccesfully() method testFindManyById (line 23) | public function testFindManyById()