mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Fix a couple of lint issues, and update to version 2 (github).
This commit is contained in:
parent
2e73916fa2
commit
2c235bdf38
6 changed files with 23 additions and 5 deletions
2
.gitignore
vendored
2
.gitignore
vendored
|
@ -1,3 +1,5 @@
|
||||||
|
.DS_Store
|
||||||
|
._*
|
||||||
*.a
|
*.a
|
||||||
*.o
|
*.o
|
||||||
/support/xhpast/xhpast
|
/support/xhpast/xhpast
|
||||||
|
|
|
@ -116,7 +116,7 @@ try {
|
||||||
'conduit.connect',
|
'conduit.connect',
|
||||||
array(
|
array(
|
||||||
'client' => 'arc',
|
'client' => 'arc',
|
||||||
'clientVersion' => 1,
|
'clientVersion' => 2,
|
||||||
'clientDescription' => php_uname('n').':'.$description,
|
'clientDescription' => php_uname('n').':'.$description,
|
||||||
'user' => getenv('USER'),
|
'user' => getenv('USER'),
|
||||||
));
|
));
|
||||||
|
|
|
@ -1,5 +1,21 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
|
/*
|
||||||
|
* Copyright 2011 Facebook, Inc.
|
||||||
|
*
|
||||||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||||||
|
* you may not use this file except in compliance with the License.
|
||||||
|
* You may obtain a copy of the License at
|
||||||
|
*
|
||||||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
*
|
||||||
|
* Unless required by applicable law or agreed to in writing, software
|
||||||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||||||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||||||
|
* See the License for the specific language governing permissions and
|
||||||
|
* limitations under the License.
|
||||||
|
*/
|
||||||
|
|
||||||
function xhp_parser_node_constants() {
|
function xhp_parser_node_constants() {
|
||||||
return array(
|
return array(
|
||||||
9000 => 'n_PROGRAM',
|
9000 => 'n_PROGRAM',
|
||||||
|
|
Loading…
Reference in a new issue