This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-(void) parseResponseFromServer:(NSString*) output { | |
NSMutableDictionary* dict = [output objectFromJSONString]; | |
NSMutableDictionary* theData; | |
int output_code = [[dict objectForKey:@"c"] intValue]; | |
BOOL bStatus = [[dict objectForKey:@"s"] boolValue]; | |
switch (output_code) { | |
case kConnect: | |
sUser = [dict objectForKey:@"u"]; | |
debugLabel.text = [NSString stringWithFormat: @"Connected as %@", sUser]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| Mail Driver | |
|-------------------------------------------------------------------------- | |
| | |
| Laravel supports both SMTP and PHP's "mail" function as drivers for the |