mirror of
https://we.phorge.it/source/arcanist.git
synced 2024-11-22 06:42:41 +01:00
Fix some failing unit tests
Summary: I somehow missed these. Test Plan: `arc unit` Reviewers: epriestley, #blessed_reviewers Reviewed By: epriestley, #blessed_reviewers Subscribers: epriestley, Korvin Differential Revision: https://secure.phabricator.com/D13693
This commit is contained in:
parent
d3b316ad35
commit
0d6f3328a0
3 changed files with 3 additions and 3 deletions
|
@ -28,7 +28,7 @@ warning:4:14
|
|||
warning:5:11
|
||||
warning:8:15
|
||||
error:10:13
|
||||
warning:11:23
|
||||
warning:13:23
|
||||
warning:16:31
|
||||
warning:19:33
|
||||
warning:24:14
|
||||
|
|
|
@ -21,7 +21,7 @@ final class Quack {
|
|||
|
||||
|
||||
|
||||
function () use ($this_is_a_closure) {};
|
||||
function() use ($this_is_a_closure) {};
|
||||
|
||||
function f(&$YY) {}
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?php
|
||||
|
||||
function () use ($c) {
|
||||
function() use ($c) {
|
||||
$c++;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue