Skip to content

Instantly share code, notes, and snippets.

@torniker
Created January 30, 2016 19:59

Revisions

  1. torniker created this gist Jan 30, 2016.
    19 changes: 19 additions & 0 deletions PHPCompanion.sublime-settings
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,19 @@
    {
    // Default pattern
    "start_dir_pattern": "^.*?((?:[\/\\\\][A-Z][^\/\\\\]*)+)$",
    "namespace_prefix": "App",
    "exclude_dir": [],

    // Need the php binary to work
    "allow_use_from_global_namespace" : true,

    // Use "inline" to include the namespace just after the <?php opening tag
    "namespace_position" : "inline",

    // Sort the list of use statements by their line length
    "use_sort_length": false,

    // Visibility of properties generated by the "insert constructor property"
    // command. "public", "protected" or "private"
    "visibility": "private"
    }