Skip to content

Commit f08a83e

Browse files
committed
acf compat
1 parent c989289 commit f08a83e

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

models/ValidationManager.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ component accessors="true" serialize="false" singleton {
112112
*
113113
* @return The discovered map of validators and aliases
114114
*/
115-
struct private function discoverValidators( required string path ){
115+
private struct function discoverValidators( required string path ){
116116
return directoryList( arguments.path, false, "name", "*.cfc" )
117117
// don't do the interfaces
118118
.filter( function( item ){

[email protected]

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
"enable":"true"
1313
},
1414
"webroot":"test-harness",
15-
"aliases":{
15+
"aliases":{
1616
"/moduleroot/cbvalidation":"./"
1717
}
1818
},
1919
"openBrowser":"false",
20-
"cfconfig": {
21-
"file" : ".cfconfig.json"
22-
}
20+
"cfconfig":{
21+
"file":".cfconfig.json"
22+
}
2323
}

test-harness/config/Coldbox.cfc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@
6666

6767
moduleSettings = {
6868
cbdebugger : {
69-
modules : { enabled : true, expanded : false },
69+
modules : { enabled : true, expanded : false }
7070
},
7171
cbvalidation : {
7272
sharedConstraints : {

0 commit comments

Comments
 (0)