Instead of doing:
$name = !empty($json['name']) ? $json['name'] : null;just do:
$name = burntCheck($json['name']);| import Swift | |
| import Cocoa | |
| // Properties you need as an enum - problem of key value coding is it allows you to type *anything*, typos compile fine. | |
| enum SyncObjectPropertyName { | |
| case Archived | |
| case Title | |
| } | |
| // Protocol shared both for local and server |
Instead of doing:
$name = !empty($json['name']) ? $json['name'] : null;just do:
$name = burntCheck($json['name']);| http://www.adobe.com/digitalimag/pdfs/phscs2ip_colspace.pdf |
| @mixin searchButtonImage | |
| { | |
| background-image: inline-image('infinitylist/svg/search-icon.svg', unquote('image/svg+xml')); | |
| background-repeat: no-repeat; | |
| } |
| @protocol TFFTagging | |
| @property (readonly, nonatomic) NSString *name; | |
| @end | |
| // Tags in sidebar UI use TFFRecordedTag | |
| // Tags in notes UI use TFFAttachableTag | |
| // Same interface for what makes a tag, which is its name. |