Last active
December 31, 2015 18:39
-
-
Save mehlah/8027807 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<style> | |
text { | |
font: 10px sans-serif; | |
} | |
</style> | |
<body> | |
<script src="http://d3js.org/d3.v3.min.js"></script> | |
<script> | |
var diameter = 960, | |
format = d3.format(",d"), | |
color = d3.scale.category20c(); | |
var bubble = d3.layout.pack() | |
.sort(null) | |
.size([diameter, diameter]) | |
.padding(1.5); | |
var svg = d3.select("body").append("svg") | |
.attr("width", diameter) | |
.attr("height", diameter) | |
.attr("class", "bubble"); | |
d3.json("lithium.json", function(error, root) { | |
var node = svg.selectAll(".node") | |
.data(bubble.nodes(mapDatas(root)) | |
.filter(function(d) { return !d.children; }) | |
) | |
.enter().append("g") | |
.attr("class", "node") | |
.attr("transform", function(d) { return "translate(" + d.x + "," + d.y + ")"; }); | |
node.append("title") | |
.text(function(d) { return d.name | |
+ "\n\tCyclomatic Complexity : " + format(d.cyclomaticComplexity) | |
+ "\n\tMaintenability Index: " + format(d.maintenabilityIndex) | |
+ "\n\tTime to implement: " + d.time + ' seconds' | |
; }); | |
node.append("circle") | |
.attr("r", function(d) { return d.r; }) | |
.style("fill", function(d) { return d.color; }); | |
// node.append("text") | |
// .attr("dy", ".3em") | |
// .style("text-anchor", "middle") | |
// .text(function(d) { return d.name.substring(0, d.r / 3); }); | |
}); | |
function mapDatas(root) { | |
var datas = []; | |
var i, color; | |
for(i in root) { | |
var e = root[i]; | |
if(e.maintenabilityIndex > 65) { | |
color = '#78BA00'; | |
}else if(e.maintenabilityIndex > 35) { | |
color = '#F4B300'; | |
} | |
else { | |
color = '#FF2E12'; | |
} | |
datas.push({ | |
"value": e.cyclomaticComplexity | |
, "name": e.filename | |
, "color": color | |
, "cyclomaticComplexity": e.cyclomaticComplexity | |
, "maintenabilityIndex": parseInt(e.maintenabilityIndex) | |
, "time": parseFloat(e.time) | |
}); | |
} | |
console.log(datas) | |
return {"children":datas}; | |
} | |
d3.select(self.frameElement).style("height", diameter + "px"); | |
</script> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"lithium\/action\/Controller.php":{"filename":"lithium\/action\/Controller.php","volume":2665,"length":533,"vocabulary":32,"effort":616.69,"difficulty":"0.23140495867769","time":34,"bugs":0.14,"cyclomaticComplexity":26,"loc":323,"logicalLoc":167,"maintenabilityIndex":"53.932432409167"},"lithium\/action\/Dispatcher.php":{"filename":"lithium\/action\/Dispatcher.php","volume":1856.3370359239,"length":368,"vocabulary":33,"effort":542.44,"difficulty":"0.29220779220779","time":30,"bugs":0.12,"cyclomaticComplexity":20,"loc":268,"logicalLoc":132,"maintenabilityIndex":"58.469987534041"},"lithium\/action\/DispatchException.php":{"filename":"lithium\/action\/DispatchException.php","volume":28.073549220576,"length":10,"vocabulary":7,"effort":42.11,"difficulty":"1.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":20,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/action\/Request.php":{"filename":"lithium\/action\/Request.php","volume":8350.1051808783,"length":1569,"vocabulary":40,"effort":952.59,"difficulty":"0.11408083441982","time":53,"bugs":0.21,"cyclomaticComplexity":125,"loc":779,"logicalLoc":470,"maintenabilityIndex":"34.547458314438"},"lithium\/action\/Response.php":{"filename":"lithium\/action\/Response.php","volume":1325.0541627084,"length":289,"vocabulary":24,"effort":395.54,"difficulty":"0.29850746268657","time":22,"bugs":0.09,"cyclomaticComplexity":16,"loc":201,"logicalLoc":103,"maintenabilityIndex":"64.182385001117"},"lithium\/analysis\/Debugger.php":{"filename":"lithium\/analysis\/Debugger.php","volume":2578.6794159863,"length":495,"vocabulary":37,"effort":749.75,"difficulty":"0.29074889867841","time":42,"bugs":0.17,"cyclomaticComplexity":38,"loc":213,"logicalLoc":162,"maintenabilityIndex":"53.321647500827"},"lithium\/analysis\/Docblock.php":{"filename":"lithium\/analysis\/Docblock.php","volume":1038.7971777092,"length":221,"vocabulary":26,"effort":544.13,"difficulty":"0.52380952380952","time":30,"bugs":0.12,"cyclomaticComplexity":11,"loc":121,"logicalLoc":79,"maintenabilityIndex":"66.907650295035"},"lithium\/analysis\/Inspector.php":{"filename":"lithium\/analysis\/Inspector.php","volume":7074.7204586857,"length":1312,"vocabulary":42,"effort":993.86,"difficulty":"0.14048059149723","time":55,"bugs":0.22,"cyclomaticComplexity":85,"loc":636,"logicalLoc":437,"maintenabilityIndex":"35.594971421793"},"lithium\/analysis\/logger\/adapter\/Cache.php":{"filename":"lithium\/analysis\/logger\/adapter\/Cache.php","volume":367.2477159872,"length":94,"vocabulary":15,"effort":183.62,"difficulty":"0.5","time":10,"bugs":0.04,"cyclomaticComplexity":1,"loc":81,"logicalLoc":36,"maintenabilityIndex":"85.84007749249"},"lithium\/analysis\/logger\/adapter\/File.php":{"filename":"lithium\/analysis\/logger\/adapter\/File.php","volume":357.89136267341,"length":94,"vocabulary":14,"effort":159.6,"difficulty":"0.44594594594595","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":83,"logicalLoc":32,"maintenabilityIndex":"INF"},"lithium\/analysis\/logger\/adapter\/FirePhp.php":{"filename":"lithium\/analysis\/logger\/adapter\/FirePhp.php","volume":764.98127279506,"length":177,"vocabulary":20,"effort":281.37,"difficulty":"0.36781609195402","time":16,"bugs":0.06,"cyclomaticComplexity":2,"loc":191,"logicalLoc":68,"maintenabilityIndex":"73.158264572836"},"lithium\/analysis\/logger\/adapter\/Growl.php":{"filename":"lithium\/analysis\/logger\/adapter\/Growl.php","volume":2168.845643259,"length":442,"vocabulary":30,"effort":753.07,"difficulty":"0.34722222222222","time":42,"bugs":0.17,"cyclomaticComplexity":10,"loc":248,"logicalLoc":139,"maintenabilityIndex":"56.086305150068"},"lithium\/analysis\/logger\/adapter\/Syslog.php":{"filename":"lithium\/analysis\/logger\/adapter\/Syslog.php","volume":421.94418432572,"length":108,"vocabulary":15,"effort":165.11,"difficulty":"0.39130434782609","time":9,"bugs":0.04,"cyclomaticComplexity":1,"loc":87,"logicalLoc":43,"maintenabilityIndex":"83.514176149857"},"lithium\/analysis\/Logger.php":{"filename":"lithium\/analysis\/Logger.php","volume":1238.5490775967,"length":250,"vocabulary":31,"effort":689.5,"difficulty":"0.55670103092784","time":38,"bugs":0.15,"cyclomaticComplexity":11,"loc":195,"logicalLoc":78,"maintenabilityIndex":"65.882774269272"},"lithium\/analysis\/Parser.php":{"filename":"lithium\/analysis\/Parser.php","volume":3621.0699842761,"length":690,"vocabulary":38,"effort":867.02,"difficulty":"0.23943661971831","time":48,"bugs":0.19,"cyclomaticComplexity":59,"loc":314,"logicalLoc":246,"maintenabilityIndex":"45.697472874058"},"lithium\/console\/command\/create\/Controller.php":{"filename":"lithium\/console\/command\/create\/Controller.php","volume":314.80827729599,"length":91,"vocabulary":11,"effort":83.33,"difficulty":"0.26470588235294","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":83,"logicalLoc":34,"maintenabilityIndex":"INF"},"lithium\/console\/command\/create\/Mock.php":{"filename":"lithium\/console\/command\/create\/Mock.php","volume":371.15460658281,"length":95,"vocabulary":15,"effort":196.49,"difficulty":"0.52941176470588","time":11,"bugs":0.04,"cyclomaticComplexity":1,"loc":73,"logicalLoc":35,"maintenabilityIndex":"85.94418139884"},"lithium\/console\/command\/create\/Model.php":{"filename":"lithium\/console\/command\/create\/Model.php","volume":86.370130467071,"length":26,"vocabulary":10,"effort":86.37,"difficulty":"1","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":32,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/console\/command\/create\/template\/controller.txt.php":{"filename":"lithium\/console\/command\/create\/template\/controller.txt.php","volume":0,"length":1,"vocabulary":1,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":46,"logicalLoc":46,"maintenabilityIndex":"INF"},"lithium\/console\/command\/create\/template\/mock.txt.php":{"filename":"lithium\/console\/command\/create\/template\/mock.txt.php","volume":0,"length":1,"vocabulary":1,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":5,"logicalLoc":5,"maintenabilityIndex":"INF"},"lithium\/console\/command\/create\/template\/model.txt.php":{"filename":"lithium\/console\/command\/create\/template\/model.txt.php","volume":0,"length":1,"vocabulary":1,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":5,"logicalLoc":5,"maintenabilityIndex":"INF"},"lithium\/console\/command\/create\/template\/test.txt.php":{"filename":"lithium\/console\/command\/create\/template\/test.txt.php","volume":0,"length":1,"vocabulary":1,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":11,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/console\/command\/create\/Test.php":{"filename":"lithium\/console\/command\/create\/Test.php","volume":691.50849518198,"length":160,"vocabulary":20,"effort":320.61,"difficulty":"0.46363636363636","time":18,"bugs":0.07,"cyclomaticComplexity":4,"loc":104,"logicalLoc":60,"maintenabilityIndex":"74.347598146679"},"lithium\/console\/command\/create\/View.php":{"filename":"lithium\/console\/command\/create\/View.php","volume":690.78122017131,"length":169,"vocabulary":17,"effort":280.63,"difficulty":"0.40625","time":16,"bugs":0.06,"cyclomaticComplexity":6,"loc":91,"logicalLoc":54,"maintenabilityIndex":"76.653760974046"},"lithium\/console\/command\/Create.php":{"filename":"lithium\/console\/command\/Create.php","volume":2535.8660794566,"length":522,"vocabulary":29,"effort":553.68,"difficulty":"0.21834061135371","time":31,"bugs":0.12,"cyclomaticComplexity":25,"loc":257,"logicalLoc":171,"maintenabilityIndex":"54.118457051762"},"lithium\/console\/command\/g11n\/Extract.php":{"filename":"lithium\/console\/command\/g11n\/Extract.php","volume":1664.2106257572,"length":350,"vocabulary":27,"effort":484.52,"difficulty":"0.29113924050633","time":27,"bugs":0.11,"cyclomaticComplexity":13,"loc":172,"logicalLoc":138,"maintenabilityIndex":"58.436126655464"},"lithium\/console\/command\/G11n.php":{"filename":"lithium\/console\/command\/G11n.php","volume":133.25742227202,"length":35,"vocabulary":14,"effort":157.05,"difficulty":"1.1785714285714","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":35,"logicalLoc":16,"maintenabilityIndex":"INF"},"lithium\/console\/command\/Help.php":{"filename":"lithium\/console\/command\/Help.php","volume":3929.0307909798,"length":766,"vocabulary":35,"effort":788.35,"difficulty":"0.20064724919094","time":44,"bugs":0.18,"cyclomaticComplexity":40,"loc":321,"logicalLoc":247,"maintenabilityIndex":"46.215767473026"},"lithium\/console\/command\/Library.php":{"filename":"lithium\/console\/command\/Library.php","volume":7811.3108227332,"length":1458,"vocabulary":41,"effort":932.32,"difficulty":"0.11935483870968","time":52,"bugs":0.21,"cyclomaticComplexity":82,"loc":727,"logicalLoc":486,"maintenabilityIndex":"34.213959128288"},"lithium\/console\/command\/Route.php":{"filename":"lithium\/console\/command\/Route.php","volume":760.65934470018,"length":176,"vocabulary":20,"effort":380.33,"difficulty":"0.5","time":21,"bugs":0.08,"cyclomaticComplexity":5,"loc":139,"logicalLoc":61,"maintenabilityIndex":"73.140268336581"},"lithium\/console\/command\/Test.php":{"filename":"lithium\/console\/command\/Test.php","volume":3113.5272588452,"length":612,"vocabulary":34,"effort":885.22,"difficulty":"0.2843137254902","time":49,"bugs":0.2,"cyclomaticComplexity":38,"loc":330,"logicalLoc":210,"maintenabilityIndex":"48.253864936874"},"lithium\/console\/Command.php":{"filename":"lithium\/console\/Command.php","volume":3272.562525913,"length":633,"vocabulary":36,"effort":796.37,"difficulty":"0.24334600760456","time":44,"bugs":0.18,"cyclomaticComplexity":39,"loc":423,"logicalLoc":203,"maintenabilityIndex":"49.347111670681"},"lithium\/console\/Dispatcher.php":{"filename":"lithium\/console\/Dispatcher.php","volume":1805,"length":361,"vocabulary":32,"effort":639.75,"difficulty":"0.35443037974684","time":36,"bugs":0.14,"cyclomaticComplexity":18,"loc":201,"logicalLoc":117,"maintenabilityIndex":"59.590393881753"},"lithium\/console\/lithium.php":{"filename":"lithium\/console\/lithium.php","volume":606.15730211164,"length":134,"vocabulary":23,"effort":434.6,"difficulty":"0.71698113207547","time":24,"bugs":0.1,"cyclomaticComplexity":10,"loc":111,"logicalLoc":57,"maintenabilityIndex":"73.385959337016"},"lithium\/console\/Request.php":{"filename":"lithium\/console\/Request.php","volume":1195.1276737948,"length":268,"vocabulary":22,"effort":352.66,"difficulty":"0.29508196721311","time":20,"bugs":0.08,"cyclomaticComplexity":10,"loc":202,"logicalLoc":97,"maintenabilityIndex":"65.859464592962"},"lithium\/console\/Response.php":{"filename":"lithium\/console\/Response.php","volume":837.92988245632,"length":205,"vocabulary":17,"effort":211.52,"difficulty":"0.25242718446602","time":12,"bugs":0.05,"cyclomaticComplexity":6,"loc":138,"logicalLoc":79,"maintenabilityIndex":"71.960378417463"},"lithium\/console\/Router.php":{"filename":"lithium\/console\/Router.php","volume":404.09320289565,"length":92,"vocabulary":21,"effort":266.11,"difficulty":"0.65853658536585","time":15,"bugs":0.06,"cyclomaticComplexity":8,"loc":54,"logicalLoc":34,"maintenabilityIndex":"84.358357209531"},"lithium\/core\/Adaptable.php":{"filename":"lithium\/core\/Adaptable.php","volume":2345.4937047009,"length":478,"vocabulary":30,"effort":583.57,"difficulty":"0.2488038277512","time":32,"bugs":0.13,"cyclomaticComplexity":28,"loc":327,"logicalLoc":171,"maintenabilityIndex":"53.818988413989"},"lithium\/core\/ClassNotFoundException.php":{"filename":"lithium\/core\/ClassNotFoundException.php","volume":28.073549220576,"length":10,"vocabulary":7,"effort":42.11,"difficulty":"1.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/core\/ConfigException.php":{"filename":"lithium\/core\/ConfigException.php","volume":28.073549220576,"length":10,"vocabulary":7,"effort":42.11,"difficulty":"1.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/core\/Configuration.php":{"filename":"lithium\/core\/Configuration.php","volume":586.21399685521,"length":138,"vocabulary":19,"effort":428.94,"difficulty":"0.73170731707317","time":24,"bugs":0.1,"cyclomaticComplexity":9,"loc":104,"logicalLoc":56,"maintenabilityIndex":"73.765092302468"},"lithium\/core\/Environment.php":{"filename":"lithium\/core\/Environment.php","volume":1797.3474758178,"length":378,"vocabulary":27,"effort":342.35,"difficulty":"0.19047619047619","time":19,"bugs":0.08,"cyclomaticComplexity":38,"loc":351,"logicalLoc":136,"maintenabilityIndex":"60.23201128539"},"lithium\/core\/ErrorHandler.php":{"filename":"lithium\/core\/ErrorHandler.php","volume":3245.8012927177,"length":638,"vocabulary":34,"effort":695.53,"difficulty":"0.21428571428571","time":39,"bugs":0.15,"cyclomaticComplexity":46,"loc":308,"logicalLoc":213,"maintenabilityIndex":"49.234173840997"},"lithium\/core\/Libraries.php":{"filename":"lithium\/core\/Libraries.php","volume":9862.5485662624,"length":1829,"vocabulary":42,"effort":935.77,"difficulty":"0.094881398252185","time":52,"bugs":0.21,"cyclomaticComplexity":134,"loc":1080,"logicalLoc":594,"maintenabilityIndex":"30.830929329448"},"lithium\/core\/NetworkException.php":{"filename":"lithium\/core\/NetworkException.php","volume":28.073549220576,"length":10,"vocabulary":7,"effort":42.11,"difficulty":"1.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":20,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/core\/Object.php":{"filename":"lithium\/core\/Object.php","volume":1902.7111026276,"length":374,"vocabulary":34,"effort":864.87,"difficulty":"0.45454545454545","time":48,"bugs":0.19,"cyclomaticComplexity":23,"loc":292,"logicalLoc":124,"maintenabilityIndex":"57.024863093111"},"lithium\/core\/StaticObject.php":{"filename":"lithium\/core\/StaticObject.php","volume":1389.3825646065,"length":286,"vocabulary":29,"effort":716.18,"difficulty":"0.51546391752577","time":40,"bugs":0.16,"cyclomaticComplexity":18,"loc":175,"logicalLoc":91,"maintenabilityIndex":"63.074846523639"},"lithium\/data\/collection\/DocumentSet.php":{"filename":"lithium\/data\/collection\/DocumentSet.php","volume":1663.3448030319,"length":346,"vocabulary":28,"effort":623.75,"difficulty":"0.375","time":35,"bugs":0.14,"cyclomaticComplexity":22,"loc":137,"logicalLoc":108,"maintenabilityIndex":"60.972636191573"},"lithium\/data\/collection\/MultiKeyRecordSet.php":{"filename":"lithium\/data\/collection\/MultiKeyRecordSet.php","volume":2008.4615084893,"length":444,"vocabulary":23,"effort":522.75,"difficulty":"0.26027397260274","time":29,"bugs":0.12,"cyclomaticComplexity":32,"loc":264,"logicalLoc":145,"maintenabilityIndex":"57.032456755937"},"lithium\/data\/collection\/RecordSet.php":{"filename":"lithium\/data\/collection\/RecordSet.php","volume":2738.0449523496,"length":558,"vocabulary":30,"effort":868.16,"difficulty":"0.31707317073171","time":48,"bugs":0.19,"cyclomaticComplexity":36,"loc":245,"logicalLoc":179,"maintenabilityIndex":"50.954985236288"},"lithium\/data\/Collection.php":{"filename":"lithium\/data\/Collection.php","volume":3894.2722601447,"length":772,"vocabulary":33,"effort":558.1,"difficulty":"0.14331210191083","time":31,"bugs":0.12,"cyclomaticComplexity":40,"loc":633,"logicalLoc":296,"maintenabilityIndex":"45.080136144973"},"lithium\/data\/Connections.php":{"filename":"lithium\/data\/Connections.php","volume":752.30470274351,"length":162,"vocabulary":25,"effort":410.35,"difficulty":"0.54545454545455","time":23,"bugs":0.09,"cyclomaticComplexity":8,"loc":197,"logicalLoc":68,"maintenabilityIndex":"70.877249260367"},"lithium\/data\/DocumentSchema.php":{"filename":"lithium\/data\/DocumentSchema.php","volume":1499.440270087,"length":319,"vocabulary":26,"effort":532.06,"difficulty":"0.35483870967742","time":30,"bugs":0.12,"cyclomaticComplexity":30,"loc":122,"logicalLoc":105,"maintenabilityIndex":"62.184434351993"},"lithium\/data\/entity\/Document.php":{"filename":"lithium\/data\/entity\/Document.php","volume":4451.3054262418,"length":861,"vocabulary":36,"effort":887.49,"difficulty":"0.1993769470405","time":49,"bugs":0.2,"cyclomaticComplexity":46,"loc":478,"logicalLoc":265,"maintenabilityIndex":"44.428123578692"},"lithium\/data\/entity\/Record.php":{"filename":"lithium\/data\/entity\/Record.php","volume":144.67948703819,"length":38,"vocabulary":14,"effort":170.52,"difficulty":"1.1785714285714","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":33,"logicalLoc":16,"maintenabilityIndex":"INF"},"lithium\/data\/Entity.php":{"filename":"lithium\/data\/Entity.php","volume":4170.1070927763,"length":813,"vocabulary":35,"effort":831.34,"difficulty":"0.19935691318328","time":46,"bugs":0.18,"cyclomaticComplexity":50,"loc":522,"logicalLoc":279,"maintenabilityIndex":"43.914801787959"},"lithium\/data\/model\/Query.php":{"filename":"lithium\/data\/model\/Query.php","volume":7025.9280769601,"length":1359,"vocabulary":36,"effort":783.38,"difficulty":"0.11149825783972","time":44,"bugs":0.17,"cyclomaticComplexity":96,"loc":801,"logicalLoc":476,"maintenabilityIndex":"35.419617643362"},"lithium\/data\/model\/QueryException.php":{"filename":"lithium\/data\/model\/QueryException.php","volume":30.880904142634,"length":11,"vocabulary":7,"effort":46.32,"difficulty":"1.5","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":21,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/data\/model\/Relationship.php":{"filename":"lithium\/data\/model\/Relationship.php","volume":2784.5055538859,"length":552,"vocabulary":33,"effort":699.14,"difficulty":"0.25108225108225","time":39,"bugs":0.16,"cyclomaticComplexity":30,"loc":312,"logicalLoc":177,"maintenabilityIndex":"52.30487369135"},"lithium\/data\/Model.php":{"filename":"lithium\/data\/Model.php","volume":12692.04069894,"length":2369,"vocabulary":41,"effort":964.28,"difficulty":"0.075975359342916","time":54,"bugs":0.21,"cyclomaticComplexity":137,"loc":1464,"logicalLoc":758,"maintenabilityIndex":"26.720148653541"},"lithium\/data\/Schema.php":{"filename":"lithium\/data\/Schema.php","volume":1859.1610133459,"length":391,"vocabulary":27,"effort":515.19,"difficulty":"0.27710843373494","time":29,"bugs":0.11,"cyclomaticComplexity":24,"loc":176,"logicalLoc":144,"maintenabilityIndex":"57.286486189637"},"lithium\/data\/source\/database\/adapter\/MySql.php":{"filename":"lithium\/data\/source\/database\/adapter\/MySql.php","volume":5473.2021841204,"length":1015,"vocabulary":42,"effort":771.73,"difficulty":"0.14100185528757","time":43,"bugs":0.17,"cyclomaticComplexity":52,"loc":436,"logicalLoc":284,"maintenabilityIndex":"44.004930597338"},"lithium\/data\/source\/database\/adapter\/pdo\/Result.php":{"filename":"lithium\/data\/source\/database\/adapter\/pdo\/Result.php","volume":332,"length":83,"vocabulary":16,"effort":154.93,"difficulty":"0.46666666666667","time":9,"bugs":0.03,"cyclomaticComplexity":4,"loc":56,"logicalLoc":32,"maintenabilityIndex":"88.312768981144"},"lithium\/data\/source\/database\/adapter\/PostgreSql.php":{"filename":"lithium\/data\/source\/database\/adapter\/PostgreSql.php","volume":6086.1790772461,"length":1136,"vocabulary":41,"effort":787.37,"difficulty":"0.12937062937063","time":44,"bugs":0.18,"cyclomaticComplexity":64,"loc":524,"logicalLoc":354,"maintenabilityIndex":"40.283615853981"},"lithium\/data\/source\/database\/adapter\/Sqlite3.php":{"filename":"lithium\/data\/source\/database\/adapter\/Sqlite3.php","volume":4425.3379558145,"length":826,"vocabulary":41,"effort":749.37,"difficulty":"0.16933638443936","time":42,"bugs":0.17,"cyclomaticComplexity":44,"loc":389,"logicalLoc":247,"maintenabilityIndex":"46.457534492456"},"lithium\/data\/source\/Database.php":{"filename":"lithium\/data\/source\/Database.php","volume":23416.359331375,"length":4149,"vocabulary":50,"effort":1348.97,"difficulty":"0.057608015028178","time":75,"bugs":0.3,"cyclomaticComplexity":282,"loc":1789,"logicalLoc":1273,"maintenabilityIndex":"16.409527067275"},"lithium\/data\/source\/http\/adapter\/CouchDb.php":{"filename":"lithium\/data\/source\/http\/adapter\/CouchDb.php","volume":5968.8912301723,"length":1100,"vocabulary":43,"effort":982.22,"difficulty":"0.16455696202532","time":55,"bugs":0.22,"cyclomaticComplexity":53,"loc":527,"logicalLoc":339,"maintenabilityIndex":"39.878591477902"},"lithium\/data\/source\/Http.php":{"filename":"lithium\/data\/source\/Http.php","volume":3152.8296658378,"length":649,"vocabulary":29,"effort":581.7,"difficulty":"0.18450184501845","time":32,"bugs":0.13,"cyclomaticComplexity":24,"loc":310,"logicalLoc":175,"maintenabilityIndex":"53.496549616692"},"lithium\/data\/source\/Mock.php":{"filename":"lithium\/data\/source\/Mock.php","volume":430.23110619251,"length":113,"vocabulary":14,"effort":141.98,"difficulty":"0.33","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":67,"logicalLoc":54,"maintenabilityIndex":"INF"},"lithium\/data\/source\/mongo_db\/Exporter.php":{"filename":"lithium\/data\/source\/mongo_db\/Exporter.php","volume":2365.1212670833,"length":482,"vocabulary":30,"effort":594.14,"difficulty":"0.2512077294686","time":33,"bugs":0.13,"cyclomaticComplexity":29,"loc":193,"logicalLoc":152,"maintenabilityIndex":"55.625659615889"},"lithium\/data\/source\/mongo_db\/Result.php":{"filename":"lithium\/data\/source\/mongo_db\/Result.php","volume":290.20986172877,"length":71,"vocabulary":17,"effort":217.66,"difficulty":"0.75","time":12,"bugs":0.05,"cyclomaticComplexity":3,"loc":40,"logicalLoc":29,"maintenabilityIndex":"88.205868824032"},"lithium\/data\/source\/mongo_db\/Schema.php":{"filename":"lithium\/data\/source\/mongo_db\/Schema.php","volume":700.15235137175,"length":162,"vocabulary":20,"effort":200.61,"difficulty":"0.28651685393258","time":11,"bugs":0.04,"cyclomaticComplexity":4,"loc":57,"logicalLoc":51,"maintenabilityIndex":"79.418490878192"},"lithium\/data\/source\/MongoDb.php":{"filename":"lithium\/data\/source\/MongoDb.php","volume":10380.211038849,"length":1925,"vocabulary":42,"effort":948.19,"difficulty":"0.091346153846154","time":53,"bugs":0.21,"cyclomaticComplexity":100,"loc":897,"logicalLoc":591,"maintenabilityIndex":"30.91170587385"},"lithium\/data\/source\/Result.php":{"filename":"lithium\/data\/source\/Result.php","volume":1195.1276737948,"length":268,"vocabulary":22,"effort":374.13,"difficulty":"0.31304347826087","time":21,"bugs":0.08,"cyclomaticComplexity":10,"loc":196,"logicalLoc":111,"maintenabilityIndex":"63.368078848228"},"lithium\/data\/Source.php":{"filename":"lithium\/data\/Source.php","volume":1119.317336278,"length":251,"vocabulary":22,"effort":290,"difficulty":"0.25909090909091","time":16,"bugs":0.06,"cyclomaticComplexity":6,"loc":293,"logicalLoc":103,"maintenabilityIndex":"66.021904913259"},"lithium\/g11n\/catalog\/adapter\/Code.php":{"filename":"lithium\/g11n\/catalog\/adapter\/Code.php","volume":1716.4151004788,"length":332,"vocabulary":36,"effort":819.78,"difficulty":"0.47761194029851","time":46,"bugs":0.18,"cyclomaticComplexity":21,"loc":189,"logicalLoc":126,"maintenabilityIndex":"57.065005686502"},"lithium\/g11n\/catalog\/adapter\/Gettext.php":{"filename":"lithium\/g11n\/catalog\/adapter\/Gettext.php","volume":5211.1920208495,"length":993,"vocabulary":38,"effort":1158.82,"difficulty":"0.22237196765499","time":64,"bugs":0.26,"cyclomaticComplexity":54,"loc":520,"logicalLoc":331,"maintenabilityIndex":"39.401396858286"},"lithium\/g11n\/catalog\/adapter\/Memory.php":{"filename":"lithium\/g11n\/catalog\/adapter\/Memory.php","volume":360,"length":90,"vocabulary":16,"effort":270,"difficulty":"0.75","time":15,"bugs":0.06,"cyclomaticComplexity":5,"loc":66,"logicalLoc":32,"maintenabilityIndex":"85.373113467993"},"lithium\/g11n\/catalog\/adapter\/Php.php":{"filename":"lithium\/g11n\/catalog\/adapter\/Php.php","volume":610.6808640677,"length":135,"vocabulary":23,"effort":464.12,"difficulty":"0.76","time":26,"bugs":0.1,"cyclomaticComplexity":5,"loc":120,"logicalLoc":46,"maintenabilityIndex":"76.677094331724"},"lithium\/g11n\/catalog\/Adapter.php":{"filename":"lithium\/g11n\/catalog\/Adapter.php","volume":518.24715664012,"length":122,"vocabulary":19,"effort":243.88,"difficulty":"0.47058823529412","time":14,"bugs":0.05,"cyclomaticComplexity":5,"loc":101,"logicalLoc":49,"maintenabilityIndex":"78.999623685342"},"lithium\/g11n\/Catalog.php":{"filename":"lithium\/g11n\/Catalog.php","volume":882.96746049018,"length":198,"vocabulary":22,"effort":354.43,"difficulty":"0.40140845070423","time":20,"bugs":0.08,"cyclomaticComplexity":13,"loc":149,"logicalLoc":74,"maintenabilityIndex":"70.157550638518"},"lithium\/g11n\/Locale.php":{"filename":"lithium\/g11n\/Locale.php","volume":2239.7109889952,"length":444,"vocabulary":33,"effort":656.08,"difficulty":"0.29292929292929","time":36,"bugs":0.15,"cyclomaticComplexity":33,"loc":320,"logicalLoc":166,"maintenabilityIndex":"53.6529308793"},"lithium\/g11n\/Message.php":{"filename":"lithium\/g11n\/Message.php","volume":1103.7491172779,"length":244,"vocabulary":23,"effort":427.98,"difficulty":"0.38775510204082","time":24,"bugs":0.1,"cyclomaticComplexity":13,"loc":219,"logicalLoc":90,"maintenabilityIndex":"66.00594736774"},"lithium\/g11n\/multibyte\/adapter\/Iconv.php":{"filename":"lithium\/g11n\/multibyte\/adapter\/Iconv.php","volume":199.31568569324,"length":60,"vocabulary":10,"effort":66.44,"difficulty":"0.33333333333333","time":4,"bugs":0.01,"cyclomaticComplexity":0,"loc":80,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/g11n\/multibyte\/adapter\/Intl.php":{"filename":"lithium\/g11n\/multibyte\/adapter\/Intl.php","volume":186.02797331369,"length":56,"vocabulary":10,"effort":74.41,"difficulty":"0.4","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":82,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/g11n\/multibyte\/adapter\/Mbstring.php":{"filename":"lithium\/g11n\/multibyte\/adapter\/Mbstring.php","volume":211.02532873688,"length":61,"vocabulary":11,"effort":105.51,"difficulty":"0.5","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":80,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/g11n\/Multibyte.php":{"filename":"lithium\/g11n\/Multibyte.php","volume":782.26898517461,"length":181,"vocabulary":20,"effort":301.6,"difficulty":"0.3855421686747","time":17,"bugs":0.07,"cyclomaticComplexity":1,"loc":176,"logicalLoc":55,"maintenabilityIndex":"76.393873891338"},"lithium\/g11n\/resources\/php\/da_DK\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/da_DK\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/de\/message\/default.php":{"filename":"lithium\/g11n\/resources\/php\/de\/message\/default.php","volume":45,"length":15,"vocabulary":8,"effort":42.19,"difficulty":"0.9375","time":2,"bugs":0.01,"cyclomaticComplexity":1,"loc":20,"logicalLoc":7,"maintenabilityIndex":"120.0169028094"},"lithium\/g11n\/resources\/php\/de_BE\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/de_BE\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/de_DE\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/de_DE\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/en\/message\/default.php":{"filename":"lithium\/g11n\/resources\/php\/en\/message\/default.php","volume":45,"length":15,"vocabulary":8,"effort":42.19,"difficulty":"0.9375","time":2,"bugs":0.01,"cyclomaticComplexity":1,"loc":20,"logicalLoc":7,"maintenabilityIndex":"120.0169028094"},"lithium\/g11n\/resources\/php\/en_CA\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/en_CA\/validation\/default.php","volume":16,"length":8,"vocabulary":4,"effort":3.43,"difficulty":"0.21428571428571","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":16,"logicalLoc":7,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/en_GB\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/en_GB\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":17,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/en_US\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/en_US\/validation\/default.php","volume":22,"length":11,"vocabulary":4,"effort":3.3,"difficulty":"0.15","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":17,"logicalLoc":8,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/fr\/message\/default.php":{"filename":"lithium\/g11n\/resources\/php\/fr\/message\/default.php","volume":39.302968908806,"length":14,"vocabulary":7,"effort":33.69,"difficulty":"0.85714285714286","time":2,"bugs":0.01,"cyclomaticComplexity":1,"loc":20,"logicalLoc":7,"maintenabilityIndex":"121.18681008673"},"lithium\/g11n\/resources\/php\/fr_BE\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/fr_BE\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/fr_CA\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/fr_CA\/validation\/default.php","volume":16,"length":8,"vocabulary":4,"effort":3.43,"difficulty":"0.21428571428571","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":16,"logicalLoc":7,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/it_IT\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/it_IT\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/nl_BE\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/nl_BE\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/g11n\/resources\/php\/nl_NL\/validation\/default.php":{"filename":"lithium\/g11n\/resources\/php\/nl_NL\/validation\/default.php","volume":10,"length":5,"vocabulary":4,"effort":3.75,"difficulty":"0.375","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":15,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/net\/http\/Auth.php":{"filename":"lithium\/net\/http\/Auth.php","volume":1203.2674803112,"length":266,"vocabulary":23,"effort":313.18,"difficulty":"0.26027397260274","time":17,"bugs":0.07,"cyclomaticComplexity":7,"loc":107,"logicalLoc":67,"maintenabilityIndex":"72.553174084974"},"lithium\/net\/http\/ClientMediaException.php":{"filename":"lithium\/net\/http\/ClientMediaException.php","volume":39.302968908806,"length":14,"vocabulary":7,"effort":58.95,"difficulty":"1.5","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":21,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/net\/http\/Media.php":{"filename":"lithium\/net\/http\/Media.php","volume":10083.633580596,"length":1870,"vocabulary":42,"effort":892.15,"difficulty":"0.088474970896391","time":50,"bugs":0.2,"cyclomaticComplexity":116,"loc":1103,"logicalLoc":608,"maintenabilityIndex":"30.734942912831"},"lithium\/net\/http\/MediaException.php":{"filename":"lithium\/net\/http\/MediaException.php","volume":30.880904142634,"length":11,"vocabulary":7,"effort":46.32,"difficulty":"1.5","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":21,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/net\/http\/Message.php":{"filename":"lithium\/net\/http\/Message.php","volume":2491.9607441246,"length":503,"vocabulary":31,"effort":676.21,"difficulty":"0.2713567839196","time":38,"bugs":0.15,"cyclomaticComplexity":40,"loc":255,"logicalLoc":161,"maintenabilityIndex":"53.946987883625"},"lithium\/net\/http\/Request.php":{"filename":"lithium\/net\/http\/Request.php","volume":3566.3866423864,"length":707,"vocabulary":33,"effort":658.76,"difficulty":"0.18471337579618","time":37,"bugs":0.15,"cyclomaticComplexity":29,"loc":341,"logicalLoc":211,"maintenabilityIndex":"49.77555194076"},"lithium\/net\/http\/Response.php":{"filename":"lithium\/net\/http\/Response.php","volume":4830,"length":966,"vocabulary":32,"effort":631.96,"difficulty":"0.13084112149533","time":35,"bugs":0.14,"cyclomaticComplexity":58,"loc":432,"logicalLoc":304,"maintenabilityIndex":"43.916353619569"},"lithium\/net\/http\/Route.php":{"filename":"lithium\/net\/http\/Route.php","volume":4410,"length":882,"vocabulary":32,"effort":646.49,"difficulty":"0.14659685863874","time":36,"bugs":0.14,"cyclomaticComplexity":57,"loc":505,"logicalLoc":287,"maintenabilityIndex":"44.734386116114"},"lithium\/net\/http\/Router.php":{"filename":"lithium\/net\/http\/Router.php","volume":8155.5599969425,"length":1590,"vocabulary":35,"effort":718.25,"difficulty":"0.088068181818182","time":40,"bugs":0.16,"cyclomaticComplexity":116,"loc":912,"logicalLoc":529,"maintenabilityIndex":"34.117209631072"},"lithium\/net\/http\/RoutingException.php":{"filename":"lithium\/net\/http\/RoutingException.php","volume":30.880904142634,"length":11,"vocabulary":7,"effort":46.32,"difficulty":"1.5","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/net\/http\/Service.php":{"filename":"lithium\/net\/http\/Service.php","volume":2261.5579644203,"length":487,"vocabulary":25,"effort":497.31,"difficulty":"0.21989528795812","time":28,"bugs":0.11,"cyclomaticComplexity":8,"loc":265,"logicalLoc":131,"maintenabilityIndex":"59.25562122421"},"lithium\/net\/Message.php":{"filename":"lithium\/net\/Message.php","volume":968.0422585962,"length":214,"vocabulary":23,"effort":308.95,"difficulty":"0.31914893617021","time":17,"bugs":0.07,"cyclomaticComplexity":8,"loc":156,"logicalLoc":76,"maintenabilityIndex":"70.551315184939"},"lithium\/net\/socket\/Context.php":{"filename":"lithium\/net\/socket\/Context.php","volume":1133.2178950769,"length":258,"vocabulary":21,"effort":356.75,"difficulty":"0.31481481481481","time":20,"bugs":0.08,"cyclomaticComplexity":11,"loc":154,"logicalLoc":89,"maintenabilityIndex":"67.17199156454"},"lithium\/net\/socket\/Curl.php":{"filename":"lithium\/net\/socket\/Curl.php","volume":1526.7925127401,"length":333,"vocabulary":24,"effort":348.51,"difficulty":"0.22826086956522","time":19,"bugs":0.08,"cyclomaticComplexity":19,"loc":210,"logicalLoc":116,"maintenabilityIndex":"62.875549933062"},"lithium\/net\/socket\/Stream.php":{"filename":"lithium\/net\/socket\/Stream.php","volume":1070.263588473,"length":240,"vocabulary":22,"effort":414.3,"difficulty":"0.38709677419355","time":23,"bugs":0.09,"cyclomaticComplexity":18,"loc":154,"logicalLoc":89,"maintenabilityIndex":"66.28103549079"},"lithium\/net\/Socket.php":{"filename":"lithium\/net\/Socket.php","volume":637.64420323505,"length":156,"vocabulary":17,"effort":215.31,"difficulty":"0.33766233766234","time":12,"bugs":0.05,"cyclomaticComplexity":1,"loc":169,"logicalLoc":64,"maintenabilityIndex":"75.691284029001"},"lithium\/security\/auth\/adapter\/Form.php":{"filename":"lithium\/security\/auth\/adapter\/Form.php","volume":1897.2001133632,"length":399,"vocabulary":27,"effort":585.71,"difficulty":"0.30872483221477","time":33,"bugs":0.13,"cyclomaticComplexity":21,"loc":448,"logicalLoc":138,"maintenabilityIndex":"57.339561249784"},"lithium\/security\/auth\/adapter\/Http.php":{"filename":"lithium\/security\/auth\/adapter\/Http.php","volume":1058.5484988897,"length":241,"vocabulary":21,"effort":294.65,"difficulty":"0.27835051546392","time":16,"bugs":0.07,"cyclomaticComplexity":5,"loc":170,"logicalLoc":78,"maintenabilityIndex":"70.485047589092"},"lithium\/security\/Auth.php":{"filename":"lithium\/security\/Auth.php","volume":1383.8691445529,"length":298,"vocabulary":25,"effort":371.28,"difficulty":"0.26829268292683","time":21,"bugs":0.08,"cyclomaticComplexity":12,"loc":227,"logicalLoc":100,"maintenabilityIndex":"65.05654068389"},"lithium\/security\/Password.php":{"filename":"lithium\/security\/Password.php","volume":1370,"length":274,"vocabulary":32,"effort":953.35,"difficulty":"0.69587628865979","time":53,"bugs":0.21,"cyclomaticComplexity":13,"loc":235,"logicalLoc":88,"maintenabilityIndex":"62.205298346183"},"lithium\/security\/validation\/FormSignature.php":{"filename":"lithium\/security\/validation\/FormSignature.php","volume":1076.8475025409,"length":224,"vocabulary":28,"effort":555.79,"difficulty":"0.51612903225806","time":31,"bugs":0.12,"cyclomaticComplexity":9,"loc":112,"logicalLoc":79,"maintenabilityIndex":"66.843552406919"},"lithium\/security\/validation\/RequestToken.php":{"filename":"lithium\/security\/validation\/RequestToken.php","volume":784.02858762332,"length":171,"vocabulary":24,"effort":435.57,"difficulty":"0.55555555555556","time":24,"bugs":0.1,"cyclomaticComplexity":8,"loc":171,"logicalLoc":62,"maintenabilityIndex":"72.063542713232"},"lithium\/storage\/cache\/adapter\/Apc.php":{"filename":"lithium\/storage\/cache\/adapter\/Apc.php","volume":692.4121846913,"length":163,"vocabulary":19,"effort":305.48,"difficulty":"0.44117647058824","time":17,"bugs":0.07,"cyclomaticComplexity":7,"loc":172,"logicalLoc":66,"maintenabilityIndex":"72.926235432784"},"lithium\/storage\/cache\/adapter\/File.php":{"filename":"lithium\/storage\/cache\/adapter\/File.php","volume":1083.6418833289,"length":243,"vocabulary":22,"effort":415.01,"difficulty":"0.38297872340426","time":23,"bugs":0.09,"cyclomaticComplexity":10,"loc":192,"logicalLoc":97,"maintenabilityIndex":"65.012913971962"},"lithium\/storage\/cache\/adapter\/Memcache.php":{"filename":"lithium\/storage\/cache\/adapter\/Memcache.php","volume":1490.1128127344,"length":325,"vocabulary":24,"effort":584.96,"difficulty":"0.39256198347107","time":32,"bugs":0.13,"cyclomaticComplexity":12,"loc":270,"logicalLoc":125,"maintenabilityIndex":"59.077762888358"},"lithium\/storage\/cache\/adapter\/Memory.php":{"filename":"lithium\/storage\/cache\/adapter\/Memory.php","volume":998.42908080157,"length":215,"vocabulary":25,"effort":493.34,"difficulty":"0.49411764705882","time":27,"bugs":0.11,"cyclomaticComplexity":9,"loc":188,"logicalLoc":100,"maintenabilityIndex":"63.644648658342"},"lithium\/storage\/cache\/adapter\/Redis.php":{"filename":"lithium\/storage\/cache\/adapter\/Redis.php","volume":1474.6811976746,"length":326,"vocabulary":23,"effort":434.4,"difficulty":"0.29457364341085","time":24,"bugs":0.1,"cyclomaticComplexity":12,"loc":275,"logicalLoc":117,"maintenabilityIndex":"61.696631730003"},"lithium\/storage\/cache\/adapter\/XCache.php":{"filename":"lithium\/storage\/cache\/adapter\/XCache.php","volume":963.23722962566,"length":216,"vocabulary":22,"effort":346.77,"difficulty":"0.36","time":19,"bugs":0.08,"cyclomaticComplexity":10,"loc":187,"logicalLoc":82,"maintenabilityIndex":"68.668512595864"},"lithium\/storage\/cache\/strategy\/Base64.php":{"filename":"lithium\/storage\/cache\/strategy\/Base64.php","volume":75,"length":25,"vocabulary":8,"effort":50,"difficulty":"0.66666666666667","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":42,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/storage\/cache\/strategy\/Json.php":{"filename":"lithium\/storage\/cache\/strategy\/Json.php","volume":78,"length":26,"vocabulary":8,"effort":52,"difficulty":"0.66666666666667","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":42,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/storage\/cache\/strategy\/Serializer.php":{"filename":"lithium\/storage\/cache\/strategy\/Serializer.php","volume":75,"length":25,"vocabulary":8,"effort":50,"difficulty":"0.66666666666667","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":42,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/storage\/Cache.php":{"filename":"lithium\/storage\/Cache.php","volume":2202.9746725998,"length":487,"vocabulary":23,"effort":438.29,"difficulty":"0.19895287958115","time":24,"bugs":0.1,"cyclomaticComplexity":27,"loc":293,"logicalLoc":157,"maintenabilityIndex":"56.699795357122"},"lithium\/storage\/session\/adapter\/Cookie.php":{"filename":"lithium\/storage\/session\/adapter\/Cookie.php","volume":2330.773032914,"length":475,"vocabulary":30,"effort":621.54,"difficulty":"0.26666666666667","time":35,"bugs":0.14,"cyclomaticComplexity":24,"loc":251,"logicalLoc":165,"maintenabilityIndex":"54.105289541481"},"lithium\/storage\/session\/adapter\/Memory.php":{"filename":"lithium\/storage\/session\/adapter\/Memory.php","volume":653.99405460005,"length":160,"vocabulary":17,"effort":232.78,"difficulty":"0.35593220338983","time":13,"bugs":0.05,"cyclomaticComplexity":2,"loc":138,"logicalLoc":71,"maintenabilityIndex":"73.44467437253"},"lithium\/storage\/session\/adapter\/Php.php":{"filename":"lithium\/storage\/session\/adapter\/Php.php","volume":1903.7125491348,"length":396,"vocabulary":28,"effort":394.42,"difficulty":"0.20718232044199","time":22,"bugs":0.09,"cyclomaticComplexity":30,"loc":256,"logicalLoc":153,"maintenabilityIndex":"57.642065352474"},"lithium\/storage\/session\/strategy\/Encrypt.php":{"filename":"lithium\/storage\/session\/strategy\/Encrypt.php","volume":1741.4460711655,"length":375,"vocabulary":25,"effort":522.43,"difficulty":"0.3","time":29,"bugs":0.12,"cyclomaticComplexity":14,"loc":269,"logicalLoc":132,"maintenabilityIndex":"58.747472449714"},"lithium\/storage\/session\/strategy\/Hmac.php":{"filename":"lithium\/storage\/session\/strategy\/Hmac.php","volume":828.3458651215,"length":195,"vocabulary":19,"effort":280,"difficulty":"0.33802816901408","time":16,"bugs":0.06,"cyclomaticComplexity":4,"loc":155,"logicalLoc":68,"maintenabilityIndex":"73.024221536609"},"lithium\/storage\/session\/strategy\/MissingSignatureException.php":{"filename":"lithium\/storage\/session\/strategy\/MissingSignatureException.php","volume":33.688259064691,"length":12,"vocabulary":7,"effort":50.53,"difficulty":"1.5","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/storage\/Session.php":{"filename":"lithium\/storage\/Session.php","volume":2795.5612888432,"length":618,"vocabulary":23,"effort":326.33,"difficulty":"0.11673151750973","time":18,"bugs":0.07,"cyclomaticComplexity":38,"loc":305,"logicalLoc":182,"maintenabilityIndex":"55.76131932823"},"lithium\/template\/helper\/Form.php":{"filename":"lithium\/template\/helper\/Form.php","volume":9887.0954353277,"length":1884,"vocabulary":38,"effort":807.11,"difficulty":"0.081632653061224","time":45,"bugs":0.18,"cyclomaticComplexity":91,"loc":889,"logicalLoc":504,"maintenabilityIndex":"34.350774946027"},"lithium\/template\/helper\/Html.php":{"filename":"lithium\/template\/helper\/Html.php","volume":2737.2226129305,"length":597,"vocabulary":24,"effort":279.04,"difficulty":"0.10194174757282","time":16,"bugs":0.06,"cyclomaticComplexity":22,"loc":327,"logicalLoc":168,"maintenabilityIndex":"57.997797037648"},"lithium\/template\/helper\/Security.php":{"filename":"lithium\/template\/helper\/Security.php","volume":1344.0491313703,"length":306,"vocabulary":21,"effort":290.31,"difficulty":"0.216","time":16,"bugs":0.06,"cyclomaticComplexity":9,"loc":153,"logicalLoc":91,"maintenabilityIndex":"67.929777890323"},"lithium\/template\/Helper.php":{"filename":"lithium\/template\/Helper.php","volume":1687.4578588127,"length":359,"vocabulary":26,"effort":505.09,"difficulty":"0.29931972789116","time":28,"bugs":0.11,"cyclomaticComplexity":20,"loc":225,"logicalLoc":115,"maintenabilityIndex":"61.074450615263"},"lithium\/template\/TemplateException.php":{"filename":"lithium\/template\/TemplateException.php","volume":28.073549220576,"length":10,"vocabulary":7,"effort":42.11,"difficulty":"1.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":20,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/template\/view\/adapter\/File.php":{"filename":"lithium\/template\/view\/adapter\/File.php","volume":1403.7476372408,"length":292,"vocabulary":28,"effort":435.05,"difficulty":"0.3099173553719","time":24,"bugs":0.1,"cyclomaticComplexity":8,"loc":237,"logicalLoc":104,"maintenabilityIndex":"63.690198850861"},"lithium\/template\/view\/adapter\/Simple.php":{"filename":"lithium\/template\/view\/adapter\/Simple.php","volume":675.19402530721,"length":142,"vocabulary":27,"effort":496.06,"difficulty":"0.73469387755102","time":28,"bugs":0.11,"cyclomaticComplexity":8,"loc":83,"logicalLoc":51,"maintenabilityIndex":"74.551329382095"},"lithium\/template\/view\/Compiler.php":{"filename":"lithium\/template\/view\/Compiler.php","volume":692.10497927672,"length":153,"vocabulary":23,"effort":319.43,"difficulty":"0.46153846153846","time":18,"bugs":0.07,"cyclomaticComplexity":6,"loc":97,"logicalLoc":51,"maintenabilityIndex":"76.906321653039"},"lithium\/template\/view\/Renderer.php":{"filename":"lithium\/template\/view\/Renderer.php","volume":4088.0385645051,"length":797,"vocabulary":35,"effort":765.74,"difficulty":"0.18731117824773","time":43,"bugs":0.17,"cyclomaticComplexity":39,"loc":518,"logicalLoc":237,"maintenabilityIndex":"47.042424565018"},"lithium\/template\/View.php":{"filename":"lithium\/template\/View.php","volume":3011.503289257,"length":597,"vocabulary":33,"effort":661.62,"difficulty":"0.21969696969697","time":37,"bugs":0.15,"cyclomaticComplexity":28,"loc":467,"logicalLoc":195,"maintenabilityIndex":"51.038604974334"},"lithium\/test\/Controller.php":{"filename":"lithium\/test\/Controller.php","volume":1040.4192498931,"length":230,"vocabulary":23,"effort":439.29,"difficulty":"0.42222222222222","time":24,"bugs":0.1,"cyclomaticComplexity":4,"loc":97,"logicalLoc":72,"maintenabilityIndex":"69.756330275259"},"lithium\/test\/Dispatcher.php":{"filename":"lithium\/test\/Dispatcher.php","volume":665.57692661265,"length":154,"vocabulary":20,"effort":269.4,"difficulty":"0.4047619047619","time":15,"bugs":0.06,"cyclomaticComplexity":2,"loc":105,"logicalLoc":54,"maintenabilityIndex":"77.118808821453"},"lithium\/test\/filter\/Affected.php":{"filename":"lithium\/test\/filter\/Affected.php","volume":823.28827600238,"length":182,"vocabulary":23,"effort":411.64,"difficulty":"0.5","time":23,"bugs":0.09,"cyclomaticComplexity":10,"loc":104,"logicalLoc":66,"maintenabilityIndex":"71.29322286675"},"lithium\/test\/filter\/Complexity.php":{"filename":"lithium\/test\/filter\/Complexity.php","volume":981.18197515433,"length":214,"vocabulary":24,"effort":440.98,"difficulty":"0.44943820224719","time":24,"bugs":0.1,"cyclomaticComplexity":9,"loc":115,"logicalLoc":80,"maintenabilityIndex":"67.843009346184"},"lithium\/test\/filter\/Coverage.php":{"filename":"lithium\/test\/filter\/Coverage.php","volume":2655.6421193488,"length":499,"vocabulary":40,"effort":1074.19,"difficulty":"0.40449438202247","time":60,"bugs":0.24,"cyclomaticComplexity":29,"loc":239,"logicalLoc":178,"maintenabilityIndex":"49.988153169863"},"lithium\/test\/filter\/Profiler.php":{"filename":"lithium\/test\/filter\/Profiler.php","volume":2559.5122254555,"length":499,"vocabulary":35,"effort":705.29,"difficulty":"0.27555555555556","time":39,"bugs":0.16,"cyclomaticComplexity":31,"loc":244,"logicalLoc":188,"maintenabilityIndex":"51.275056003224"},"lithium\/test\/Filter.php":{"filename":"lithium\/test\/Filter.php","volume":144.3171490075,"length":39,"vocabulary":13,"effort":135.3,"difficulty":"0.9375","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":47,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/test\/Group.php":{"filename":"lithium\/test\/Group.php","volume":1241.443320689,"length":253,"vocabulary":30,"effort":609.01,"difficulty":"0.49056603773585","time":34,"bugs":0.14,"cyclomaticComplexity":14,"loc":144,"logicalLoc":86,"maintenabilityIndex":"64.891050237613"},"lithium\/test\/Integration.php":{"filename":"lithium\/test\/Integration.php","volume":404.4827251399,"length":97,"vocabulary":18,"effort":252.8,"difficulty":"0.625","time":14,"bugs":0.06,"cyclomaticComplexity":3,"loc":81,"logicalLoc":51,"maintenabilityIndex":"78.282230879654"},"lithium\/test\/Mocker.php":{"filename":"lithium\/test\/Mocker.php","volume":5504.6347942329,"length":1082,"vocabulary":34,"effort":604.9,"difficulty":"0.10989010989011","time":34,"bugs":0.13,"cyclomaticComplexity":40,"loc":824,"logicalLoc":445,"maintenabilityIndex":"38.056425947874"},"lithium\/test\/MockerChain.php":{"filename":"lithium\/test\/MockerChain.php","volume":1711.7595007788,"length":360,"vocabulary":27,"effort":449.95,"difficulty":"0.26285714285714","time":25,"bugs":0.1,"cyclomaticComplexity":22,"loc":207,"logicalLoc":122,"maintenabilityIndex":"60.696409690553"},"lithium\/test\/Report.php":{"filename":"lithium\/test\/Report.php","volume":2169.9379839495,"length":438,"vocabulary":31,"effort":600.91,"difficulty":"0.27692307692308","time":33,"bugs":0.13,"cyclomaticComplexity":18,"loc":258,"logicalLoc":137,"maintenabilityIndex":"57.35960859816"},"lithium\/test\/templates\/affected.html.php":{"filename":"lithium\/test\/templates\/affected.html.php","volume":93.013986656846,"length":28,"vocabulary":10,"effort":39.16,"difficulty":"0.42105263157895","time":2,"bugs":0.01,"cyclomaticComplexity":2,"loc":11,"logicalLoc":11,"maintenabilityIndex":"112.92286247729"},"lithium\/test\/templates\/affected.json.php":{"filename":"lithium\/test\/templates\/affected.json.php","volume":4.7548875021635,"length":3,"vocabulary":3,"effort":4.75,"difficulty":"1","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":0,"logicalLoc":0,"maintenabilityIndex":"INF"},"lithium\/test\/templates\/affected.txt.php":{"filename":"lithium\/test\/templates\/affected.txt.php","volume":36,"length":12,"vocabulary":8,"effort":18,"difficulty":"0.5","time":1,"bugs":0,"cyclomaticComplexity":2,"loc":7,"logicalLoc":7,"maintenabilityIndex":"124.28689859272"},"lithium\/test\/templates\/complexity.html.php":{"filename":"lithium\/test\/templates\/complexity.html.php","volume":170.22022703449,"length":46,"vocabulary":13,"effort":98.2,"difficulty":"0.57692307692308","time":5,"bugs":0.02,"cyclomaticComplexity":3,"loc":22,"logicalLoc":22,"maintenabilityIndex":"96.819999109327"},"lithium\/test\/templates\/complexity.json.php":{"filename":"lithium\/test\/templates\/complexity.json.php","volume":146.98346252957,"length":41,"vocabulary":12,"effort":146.98,"difficulty":"1","time":8,"bugs":0.03,"cyclomaticComplexity":3,"loc":17,"logicalLoc":17,"maintenabilityIndex":"98.899721079772"},"lithium\/test\/templates\/complexity.txt.php":{"filename":"lithium\/test\/templates\/complexity.txt.php","volume":155.41846816193,"length":42,"vocabulary":13,"effort":105.97,"difficulty":"0.68181818181818","time":6,"bugs":0.02,"cyclomaticComplexity":3,"loc":15,"logicalLoc":15,"maintenabilityIndex":"102.62849453278"},"lithium\/test\/templates\/coverage.html.php":{"filename":"lithium\/test\/templates\/coverage.html.php","volume":625.3818147113,"length":153,"vocabulary":17,"effort":167.63,"difficulty":"0.2680412371134","time":9,"bugs":0.04,"cyclomaticComplexity":6,"loc":79,"logicalLoc":79,"maintenabilityIndex":"73.169692429967"},"lithium\/test\/templates\/coverage.json.php":{"filename":"lithium\/test\/templates\/coverage.json.php","volume":4.7548875021635,"length":3,"vocabulary":3,"effort":4.75,"difficulty":"1","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":0,"logicalLoc":0,"maintenabilityIndex":"INF"},"lithium\/test\/templates\/coverage.txt.php":{"filename":"lithium\/test\/templates\/coverage.txt.php","volume":347.71326300916,"length":89,"vocabulary":15,"effort":129.66,"difficulty":"0.3728813559322","time":7,"bugs":0.03,"cyclomaticComplexity":6,"loc":33,"logicalLoc":33,"maintenabilityIndex":"88.646911499637"},"lithium\/test\/templates\/errors.txt.php":{"filename":"lithium\/test\/templates\/errors.txt.php","volume":394.59595015646,"length":101,"vocabulary":15,"effort":64.12,"difficulty":"0.1625","time":4,"bugs":0.01,"cyclomaticComplexity":5,"loc":34,"logicalLoc":34,"maintenabilityIndex":"91.866855877103"},"lithium\/test\/templates\/exception.html.php":{"filename":"lithium\/test\/templates\/exception.html.php","volume":98.267675044712,"length":31,"vocabulary":9,"effort":16.38,"difficulty":"0.16666666666667","time":1,"bugs":0,"cyclomaticComplexity":2,"loc":8,"logicalLoc":8,"maintenabilityIndex":"122.61410556545"},"lithium\/test\/templates\/fail.html.php":{"filename":"lithium\/test\/templates\/fail.html.php","volume":55.726274277297,"length":24,"vocabulary":5,"effort":9.83,"difficulty":"0.17647058823529","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":6,"logicalLoc":6,"maintenabilityIndex":"INF"},"lithium\/test\/templates\/layout.html.php":{"filename":"lithium\/test\/templates\/layout.html.php","volume":577.71814182833,"length":136,"vocabulary":19,"effort":251.18,"difficulty":"0.43478260869565","time":14,"bugs":0.06,"cyclomaticComplexity":4,"loc":75,"logicalLoc":69,"maintenabilityIndex":"73.352543891799"},"lithium\/test\/templates\/menu.html.php":{"filename":"lithium\/test\/templates\/menu.html.php","volume":270.32219946609,"length":71,"vocabulary":14,"effort":148.68,"difficulty":"0.55","time":8,"bugs":0.03,"cyclomaticComplexity":2,"loc":23,"logicalLoc":23,"maintenabilityIndex":"94.036228854188"},"lithium\/test\/templates\/profiler.html.php":{"filename":"lithium\/test\/templates\/profiler.html.php","volume":60,"length":20,"vocabulary":8,"effort":15,"difficulty":"0.25","time":1,"bugs":0,"cyclomaticComplexity":1,"loc":9,"logicalLoc":9,"maintenabilityIndex":"121.32310080142"},"lithium\/test\/templates\/profiler.json.php":{"filename":"lithium\/test\/templates\/profiler.json.php","volume":4.7548875021635,"length":3,"vocabulary":3,"effort":4.75,"difficulty":"1","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":0,"logicalLoc":0,"maintenabilityIndex":"INF"},"lithium\/test\/templates\/profiler.txt.php":{"filename":"lithium\/test\/templates\/profiler.txt.php","volume":109.62362713128,"length":33,"vocabulary":10,"effort":73.08,"difficulty":"0.66666666666667","time":4,"bugs":0.02,"cyclomaticComplexity":2,"loc":10,"logicalLoc":10,"maintenabilityIndex":"111.22261303812"},"lithium\/test\/templates\/result.txt.php":{"filename":"lithium\/test\/templates\/result.txt.php","volume":159.45254855459,"length":48,"vocabulary":10,"effort":52.32,"difficulty":"0.328125","time":3,"bugs":0.01,"cyclomaticComplexity":6,"loc":28,"logicalLoc":28,"maintenabilityIndex":"96.027812980065"},"lithium\/test\/templates\/skips.txt.php":{"filename":"lithium\/test\/templates\/skips.txt.php","volume":81,"length":27,"vocabulary":8,"effort":25.58,"difficulty":"0.31578947368421","time":1,"bugs":0.01,"cyclomaticComplexity":1,"loc":11,"logicalLoc":11,"maintenabilityIndex":"115.29668044068"},"lithium\/test\/templates\/stats.html.php":{"filename":"lithium\/test\/templates\/stats.html.php","volume":492,"length":123,"vocabulary":16,"effort":127.92,"difficulty":"0.26","time":7,"bugs":0.03,"cyclomaticComplexity":13,"loc":29,"logicalLoc":29,"maintenabilityIndex":"90.632562845669"},"lithium\/test\/templates\/stats.json.php":{"filename":"lithium\/test\/templates\/stats.json.php","volume":0,"length":0,"vocabulary":0,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":0,"logicalLoc":0,"maintenabilityIndex":"INF"},"lithium\/test\/Unit.php":{"filename":"lithium\/test\/Unit.php","volume":18446.622927905,"length":3236,"vocabulary":52,"effort":1367.47,"difficulty":"0.074131274131274","time":76,"bugs":0.3,"cyclomaticComplexity":150,"loc":2042,"logicalLoc":1049,"maintenabilityIndex":"19.619222126032"},"lithium\/tests\/cases\/action\/ControllerTest.php":{"filename":"lithium\/tests\/cases\/action\/ControllerTest.php","volume":4500.2935178721,"length":1182,"vocabulary":14,"effort":157.91,"difficulty":"0.035087719298246","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":382,"logicalLoc":333,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/action\/DispatcherTest.php":{"filename":"lithium\/tests\/cases\/action\/DispatcherTest.php","volume":3253.9124752978,"length":766,"vocabulary":19,"effort":189.55,"difficulty":"0.058252427184466","time":11,"bugs":0.04,"cyclomaticComplexity":3,"loc":212,"logicalLoc":198,"maintenabilityIndex":"57.805198498151"},"lithium\/tests\/cases\/action\/RequestTest.php":{"filename":"lithium\/tests\/cases\/action\/RequestTest.php","volume":19690.759006317,"length":4483,"vocabulary":21,"effort":261.82,"difficulty":"0.013296832225264","time":15,"bugs":0.06,"cyclomaticComplexity":4,"loc":1497,"logicalLoc":1474,"maintenabilityIndex":"23.538426445694"},"lithium\/tests\/cases\/action\/ResponseTest.php":{"filename":"lithium\/tests\/cases\/action\/ResponseTest.php","volume":2683.7059453178,"length":611,"vocabulary":21,"effort":350.95,"difficulty":"0.13076923076923","time":19,"bugs":0.08,"cyclomaticComplexity":1,"loc":211,"logicalLoc":191,"maintenabilityIndex":"55.437822897127"},"lithium\/tests\/cases\/analysis\/DebuggerTest.php":{"filename":"lithium\/tests\/cases\/analysis\/DebuggerTest.php","volume":22,"length":11,"vocabulary":4,"effort":11,"difficulty":"0.5","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":13,"logicalLoc":7,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/analysis\/DocblockTest.php":{"filename":"lithium\/tests\/cases\/analysis\/DocblockTest.php","volume":1105.6500385572,"length":283,"vocabulary":15,"effort":191.53,"difficulty":"0.17322834645669","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":120,"logicalLoc":93,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/analysis\/InspectorTest.php":{"filename":"lithium\/tests\/cases\/analysis\/InspectorTest.php","volume":5112.2331883041,"length":1115,"vocabulary":24,"effort":469.01,"difficulty":"0.091743119266055","time":26,"bugs":0.1,"cyclomaticComplexity":1,"loc":384,"logicalLoc":316,"maintenabilityIndex":"45.773730870953"},"lithium\/tests\/cases\/analysis\/logger\/adapter\/CacheTest.php":{"filename":"lithium\/tests\/cases\/analysis\/logger\/adapter\/CacheTest.php","volume":521.60762432189,"length":137,"vocabulary":14,"effort":134.48,"difficulty":"0.2578125","time":7,"bugs":0.03,"cyclomaticComplexity":0,"loc":76,"logicalLoc":54,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/analysis\/logger\/adapter\/FileTest.php":{"filename":"lithium\/tests\/cases\/analysis\/logger\/adapter\/FileTest.php","volume":691.51963542271,"length":177,"vocabulary":15,"effort":172.88,"difficulty":"0.25","time":10,"bugs":0.04,"cyclomaticComplexity":1,"loc":61,"logicalLoc":55,"maintenabilityIndex":"79.287694295801"},"lithium\/tests\/cases\/analysis\/logger\/adapter\/FirePhpTest.php":{"filename":"lithium\/tests\/cases\/analysis\/logger\/adapter\/FirePhpTest.php","volume":555.87381862041,"length":146,"vocabulary":14,"effort":160.91,"difficulty":"0.28947368421053","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":72,"logicalLoc":48,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/analysis\/logger\/adapter\/GrowlTest.php":{"filename":"lithium\/tests\/cases\/analysis\/logger\/adapter\/GrowlTest.php","volume":2474.7806993374,"length":650,"vocabulary":14,"effort":380.74,"difficulty":"0.15384615384615","time":21,"bugs":0.08,"cyclomaticComplexity":0,"loc":126,"logicalLoc":120,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/analysis\/logger\/adapter\/SyslogTest.php":{"filename":"lithium\/tests\/cases\/analysis\/logger\/adapter\/SyslogTest.php","volume":517.80026939983,"length":136,"vocabulary":14,"effort":144.81,"difficulty":"0.27966101694915","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":60,"logicalLoc":51,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/analysis\/LoggerTest.php":{"filename":"lithium\/tests\/cases\/analysis\/LoggerTest.php","volume":2493.75251075,"length":577,"vocabulary":20,"effort":311.72,"difficulty":"0.125","time":17,"bugs":0.07,"cyclomaticComplexity":3,"loc":213,"logicalLoc":204,"maintenabilityIndex":"54.734827458658"},"lithium\/tests\/cases\/analysis\/ParserTest.php":{"filename":"lithium\/tests\/cases\/analysis\/ParserTest.php","volume":2047.8188834664,"length":501,"vocabulary":17,"effort":234.55,"difficulty":"0.11453744493392","time":13,"bugs":0.05,"cyclomaticComplexity":0,"loc":168,"logicalLoc":157,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/create\/ControllerTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/create\/ControllerTest.php","volume":1184,"length":296,"vocabulary":16,"effort":171.02,"difficulty":"0.14444444444444","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":145,"logicalLoc":139,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/create\/MockTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/create\/MockTest.php","volume":820,"length":205,"vocabulary":16,"effort":177.67,"difficulty":"0.21666666666667","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":78,"logicalLoc":72,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/create\/ModelTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/create\/ModelTest.php","volume":671.98518244467,"length":172,"vocabulary":15,"effort":161.28,"difficulty":"0.24","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":58,"logicalLoc":52,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/create\/TestTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/create\/TestTest.php","volume":1340.6878119301,"length":328,"vocabulary":17,"effort":243.76,"difficulty":"0.18181818181818","time":14,"bugs":0.05,"cyclomaticComplexity":0,"loc":135,"logicalLoc":129,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/create\/ViewTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/create\/ViewTest.php","volume":904.87372531298,"length":217,"vocabulary":18,"effort":266.7,"difficulty":"0.29473684210526","time":15,"bugs":0.06,"cyclomaticComplexity":1,"loc":71,"logicalLoc":65,"maintenabilityIndex":"74.327079185513"},"lithium\/tests\/cases\/console\/command\/CreateTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/CreateTest.php","volume":2699.6614015655,"length":691,"vocabulary":15,"effort":147.7,"difficulty":"0.054711246200608","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":219,"logicalLoc":213,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/g11n\/ExtractTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/g11n\/ExtractTest.php","volume":1592.911350551,"length":382,"vocabulary":18,"effort":330.38,"difficulty":"0.20740740740741","time":18,"bugs":0.07,"cyclomaticComplexity":1,"loc":128,"logicalLoc":122,"maintenabilityIndex":"63.013592838261"},"lithium\/tests\/cases\/console\/command\/HelpTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/HelpTest.php","volume":2484,"length":621,"vocabulary":16,"effort":190.7,"difficulty":"0.076771653543307","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":176,"logicalLoc":173,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/command\/LibraryTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/LibraryTest.php","volume":11061.665444043,"length":2382,"vocabulary":25,"effort":468.81,"difficulty":"0.042381432896065","time":26,"bugs":0.1,"cyclomaticComplexity":2,"loc":709,"logicalLoc":693,"maintenabilityIndex":"32.89486280231"},"lithium\/tests\/cases\/console\/command\/RouteTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/RouteTest.php","volume":2753.0681964433,"length":637,"vocabulary":20,"effort":286.96,"difficulty":"0.1042345276873","time":16,"bugs":0.06,"cyclomaticComplexity":3,"loc":283,"logicalLoc":206,"maintenabilityIndex":"55.00714250645"},"lithium\/tests\/cases\/console\/command\/TestTest.php":{"filename":"lithium\/tests\/cases\/console\/command\/TestTest.php","volume":2752.1505009519,"length":660,"vocabulary":18,"effort":289.7,"difficulty":"0.10526315789474","time":16,"bugs":0.06,"cyclomaticComplexity":0,"loc":212,"logicalLoc":206,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/CommandTest.php":{"filename":"lithium\/tests\/cases\/console\/CommandTest.php","volume":3715.4529564237,"length":951,"vocabulary":15,"effort":213.98,"difficulty":"0.057591623036649","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":269,"logicalLoc":263,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/DispatcherTest.php":{"filename":"lithium\/tests\/cases\/console\/DispatcherTest.php","volume":1207.229194043,"length":309,"vocabulary":15,"effort":171.1,"difficulty":"0.14173228346457","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":135,"logicalLoc":129,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/console\/RequestTest.php":{"filename":"lithium\/tests\/cases\/console\/RequestTest.php","volume":2387.3352625553,"length":562,"vocabulary":19,"effort":291.14,"difficulty":"0.1219512195122","time":16,"bugs":0.06,"cyclomaticComplexity":2,"loc":185,"logicalLoc":179,"maintenabilityIndex":"57.301143987941"},"lithium\/tests\/cases\/console\/ResponseTest.php":{"filename":"lithium\/tests\/cases\/console\/ResponseTest.php","volume":1338.545925463,"length":321,"vocabulary":18,"effort":273.57,"difficulty":"0.2043795620438","time":15,"bugs":0.06,"cyclomaticComplexity":2,"loc":93,"logicalLoc":87,"maintenabilityIndex":"69.312765467076"},"lithium\/tests\/cases\/console\/RouterTest.php":{"filename":"lithium\/tests\/cases\/console\/RouterTest.php","volume":1393.4919014731,"length":366,"vocabulary":14,"effort":114.39,"difficulty":"0.082089552238806","time":6,"bugs":0.03,"cyclomaticComplexity":0,"loc":139,"logicalLoc":133,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/core\/AdaptableTest.php":{"filename":"lithium\/tests\/cases\/core\/AdaptableTest.php","volume":4000,"length":1000,"vocabulary":16,"effort":259.46,"difficulty":"0.064864864864865","time":14,"bugs":0.06,"cyclomaticComplexity":0,"loc":345,"logicalLoc":339,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/core\/EnvironmentTest.php":{"filename":"lithium\/tests\/cases\/core\/EnvironmentTest.php","volume":3279.4000403784,"length":772,"vocabulary":19,"effort":294.56,"difficulty":"0.089820359281437","time":16,"bugs":0.07,"cyclomaticComplexity":4,"loc":256,"logicalLoc":218,"maintenabilityIndex":"53.887822148838"},"lithium\/tests\/cases\/core\/ErrorHandlerTest.php":{"filename":"lithium\/tests\/cases\/core\/ErrorHandlerTest.php","volume":2064.389188706,"length":470,"vocabulary":21,"effort":441.44,"difficulty":"0.21383647798742","time":25,"bugs":0.1,"cyclomaticComplexity":2,"loc":175,"logicalLoc":169,"maintenabilityIndex":"56.067997992279"},"lithium\/tests\/cases\/core\/LibrariesTest.php":{"filename":"lithium\/tests\/cases\/core\/LibrariesTest.php","volume":10319.190922565,"length":2103,"vocabulary":30,"effort":673.27,"difficulty":"0.065244667503137","time":37,"bugs":0.15,"cyclomaticComplexity":9,"loc":783,"logicalLoc":735,"maintenabilityIndex":"29.713574782899"},"lithium\/tests\/cases\/core\/ObjectTest.php":{"filename":"lithium\/tests\/cases\/core\/ObjectTest.php","volume":3234.9054131639,"length":828,"vocabulary":15,"effort":211.18,"difficulty":"0.065281899109792","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":276,"logicalLoc":254,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/core\/StaticObjectTest.php":{"filename":"lithium\/tests\/cases\/core\/StaticObjectTest.php","volume":2125.348484011,"length":544,"vocabulary":15,"effort":239.78,"difficulty":"0.11282051282051","time":13,"bugs":0.05,"cyclomaticComplexity":0,"loc":222,"logicalLoc":200,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/collection\/DocumentSetTest.php":{"filename":"lithium\/tests\/cases\/data\/collection\/DocumentSetTest.php","volume":5668.0231309394,"length":1253,"vocabulary":23,"effort":318.15,"difficulty":"0.056129985228951","time":18,"bugs":0.07,"cyclomaticComplexity":7,"loc":398,"logicalLoc":392,"maintenabilityIndex":"43.852879418782"},"lithium\/tests\/cases\/data\/collection\/MultiKeyRecordSetTest.php":{"filename":"lithium\/tests\/cases\/data\/collection\/MultiKeyRecordSetTest.php","volume":19214.500396243,"length":4041,"vocabulary":27,"effort":502.48,"difficulty":"0.026151222285389","time":28,"bugs":0.11,"cyclomaticComplexity":17,"loc":960,"logicalLoc":931,"maintenabilityIndex":"27.259270280619"},"lithium\/tests\/cases\/data\/collection\/RecordSetTest.php":{"filename":"lithium\/tests\/cases\/data\/collection\/RecordSetTest.php","volume":15434.364832023,"length":3246,"vocabulary":27,"effort":511.51,"difficulty":"0.03314121037464","time":28,"bugs":0.11,"cyclomaticComplexity":17,"loc":727,"logicalLoc":698,"maintenabilityIndex":"31.832902361295"},"lithium\/tests\/cases\/data\/CollectionTest.php":{"filename":"lithium\/tests\/cases\/data\/CollectionTest.php","volume":3000.1977254777,"length":734,"vocabulary":17,"effort":211.97,"difficulty":"0.070652173913043","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":243,"logicalLoc":188,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/ConnectionsTest.php":{"filename":"lithium\/tests\/cases\/data\/ConnectionsTest.php","volume":2037.9602497172,"length":457,"vocabulary":22,"effort":400.91,"difficulty":"0.19672131147541","time":22,"bugs":0.09,"cyclomaticComplexity":7,"loc":167,"logicalLoc":161,"maintenabilityIndex":"57.066257744258"},"lithium\/tests\/cases\/data\/entity\/DocumentTest.php":{"filename":"lithium\/tests\/cases\/data\/entity\/DocumentTest.php","volume":16230.767252553,"length":3540,"vocabulary":24,"effort":446.42,"difficulty":"0.027504342790967","time":25,"bugs":0.1,"cyclomaticComplexity":2,"loc":934,"logicalLoc":912,"maintenabilityIndex":"28.700655202027"},"lithium\/tests\/cases\/data\/entity\/RecordTest.php":{"filename":"lithium\/tests\/cases\/data\/entity\/RecordTest.php","volume":1776,"length":444,"vocabulary":16,"effort":215.27,"difficulty":"0.12121212121212","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":132,"logicalLoc":113,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/EntityTest.php":{"filename":"lithium\/tests\/cases\/data\/EntityTest.php","volume":4287.3526701283,"length":992,"vocabulary":20,"effort":313.95,"difficulty":"0.073226544622426","time":17,"bugs":0.07,"cyclomaticComplexity":1,"loc":294,"logicalLoc":281,"maintenabilityIndex":"49.762638921481"},"lithium\/tests\/cases\/data\/model\/QueryTest.php":{"filename":"lithium\/tests\/cases\/data\/model\/QueryTest.php","volume":10153.767378512,"length":2435,"vocabulary":18,"effort":242.58,"difficulty":"0.023890784982935","time":13,"bugs":0.05,"cyclomaticComplexity":0,"loc":775,"logicalLoc":752,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/model\/RelationshipTest.php":{"filename":"lithium\/tests\/cases\/data\/model\/RelationshipTest.php","volume":2008,"length":502,"vocabulary":16,"effort":195.11,"difficulty":"0.097165991902834","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":168,"logicalLoc":159,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/ModelTest.php":{"filename":"lithium\/tests\/cases\/data\/ModelTest.php","volume":16277.622743923,"length":3463,"vocabulary":26,"effort":472.75,"difficulty":"0.029042904290429","time":26,"bugs":0.11,"cyclomaticComplexity":2,"loc":1063,"logicalLoc":1035,"maintenabilityIndex":"26.353090636939"},"lithium\/tests\/cases\/data\/SchemaTest.php":{"filename":"lithium\/tests\/cases\/data\/SchemaTest.php","volume":425.55056758623,"length":115,"vocabulary":13,"effort":99.74,"difficulty":"0.234375","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":36,"logicalLoc":30,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/source\/DatabaseTest.php":{"filename":"lithium\/tests\/cases\/data\/source\/DatabaseTest.php","volume":24773.913258403,"length":5832,"vocabulary":19,"effort":291.95,"difficulty":"0.011784511784512","time":16,"bugs":0.06,"cyclomaticComplexity":0,"loc":1696,"logicalLoc":1680,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/source\/http\/adapter\/CouchDbTest.php":{"filename":"lithium\/tests\/cases\/data\/source\/http\/adapter\/CouchDbTest.php","volume":3813.1252213139,"length":976,"vocabulary":15,"effort":200.21,"difficulty":"0.052505966587112","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":261,"logicalLoc":255,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/source\/HttpTest.php":{"filename":"lithium\/tests\/cases\/data\/source\/HttpTest.php","volume":3944,"length":986,"vocabulary":16,"effort":196.38,"difficulty":"0.049792531120332","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":357,"logicalLoc":351,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/source\/mongo_db\/ExporterTest.php":{"filename":"lithium\/tests\/cases\/data\/source\/mongo_db\/ExporterTest.php","volume":18601.209230343,"length":3829,"vocabulary":29,"effort":568.84,"difficulty":"0.030581039755352","time":32,"bugs":0.13,"cyclomaticComplexity":6,"loc":906,"logicalLoc":864,"maintenabilityIndex":"28.063700630028"},"lithium\/tests\/cases\/data\/source\/mongo_db\/SchemaTest.php":{"filename":"lithium\/tests\/cases\/data\/source\/mongo_db\/SchemaTest.php","volume":597.7542611281,"length":153,"vocabulary":15,"effort":187.87,"difficulty":"0.31428571428571","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":50,"logicalLoc":44,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/data\/source\/MongoDbTest.php":{"filename":"lithium\/tests\/cases\/data\/source\/MongoDbTest.php","volume":20349.606619734,"length":4633,"vocabulary":21,"effort":384.32,"difficulty":"0.018885741265345","time":21,"bugs":0.09,"cyclomaticComplexity":4,"loc":969,"logicalLoc":956,"maintenabilityIndex":"28.556801303273"},"lithium\/tests\/cases\/data\/SourceTest.php":{"filename":"lithium\/tests\/cases\/data\/SourceTest.php","volume":569.86771659373,"length":154,"vocabulary":13,"effort":101.76,"difficulty":"0.17857142857143","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":52,"logicalLoc":46,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/g11n\/catalog\/adapter\/CodeTest.php":{"filename":"lithium\/tests\/cases\/g11n\/catalog\/adapter\/CodeTest.php","volume":2822.8202145974,"length":633,"vocabulary":22,"effort":369.53,"difficulty":"0.13090909090909","time":21,"bugs":0.08,"cyclomaticComplexity":5,"loc":254,"logicalLoc":242,"maintenabilityIndex":"50.965432091369"},"lithium\/tests\/cases\/g11n\/catalog\/adapter\/GettextTest.php":{"filename":"lithium\/tests\/cases\/g11n\/catalog\/adapter\/GettextTest.php","volume":9344.1535764697,"length":2038,"vocabulary":24,"effort":339.48,"difficulty":"0.036330608537693","time":19,"bugs":0.08,"cyclomaticComplexity":6,"loc":806,"logicalLoc":800,"maintenabilityIndex":"31.994627151329"},"lithium\/tests\/cases\/g11n\/catalog\/adapter\/MemoryTest.php":{"filename":"lithium\/tests\/cases\/g11n\/catalog\/adapter\/MemoryTest.php","volume":430.23110619251,"length":113,"vocabulary":14,"effort":143.41,"difficulty":"0.33333333333333","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":48,"logicalLoc":42,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/g11n\/catalog\/adapter\/PhpTest.php":{"filename":"lithium\/tests\/cases\/g11n\/catalog\/adapter\/PhpTest.php","volume":1901.4858006577,"length":456,"vocabulary":18,"effort":234.54,"difficulty":"0.12334801762115","time":13,"bugs":0.05,"cyclomaticComplexity":2,"loc":207,"logicalLoc":201,"maintenabilityIndex":"56.547380662943"},"lithium\/tests\/cases\/g11n\/catalog\/AdapterTest.php":{"filename":"lithium\/tests\/cases\/g11n\/catalog\/AdapterTest.php","volume":4016.2835322856,"length":1028,"vocabulary":15,"effort":172.57,"difficulty":"0.04296875","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":374,"logicalLoc":368,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/g11n\/CatalogTest.php":{"filename":"lithium\/tests\/cases\/g11n\/CatalogTest.php","volume":4205.9992636466,"length":1029,"vocabulary":17,"effort":209.9,"difficulty":"0.049904030710173","time":12,"bugs":0.05,"cyclomaticComplexity":1,"loc":384,"logicalLoc":330,"maintenabilityIndex":"49.252216618241"},"lithium\/tests\/cases\/g11n\/LocaleTest.php":{"filename":"lithium\/tests\/cases\/g11n\/LocaleTest.php","volume":5328,"length":1332,"vocabulary":16,"effort":164.39,"difficulty":"0.030854430379747","time":9,"bugs":0.04,"cyclomaticComplexity":3,"loc":494,"logicalLoc":431,"maintenabilityIndex":"45.944711515614"},"lithium\/tests\/cases\/g11n\/MessageTest.php":{"filename":"lithium\/tests\/cases\/g11n\/MessageTest.php","volume":4607.7671265938,"length":1105,"vocabulary":18,"effort":290.22,"difficulty":"0.062984496124031","time":16,"bugs":0.06,"cyclomaticComplexity":2,"loc":317,"logicalLoc":311,"maintenabilityIndex":"48.36860683964"},"lithium\/tests\/cases\/g11n\/multibyte\/adapter\/IconvTest.php":{"filename":"lithium\/tests\/cases\/g11n\/multibyte\/adapter\/IconvTest.php","volume":2168.9023129363,"length":605,"vocabulary":12,"effort":164.5,"difficulty":"0.075842696629213","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":227,"logicalLoc":221,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/g11n\/multibyte\/adapter\/IntlTest.php":{"filename":"lithium\/tests\/cases\/g11n\/multibyte\/adapter\/IntlTest.php","volume":2183.2421629392,"length":609,"vocabulary":12,"effort":170.37,"difficulty":"0.078034682080925","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":224,"logicalLoc":218,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/g11n\/multibyte\/adapter\/MbstringTest.php":{"filename":"lithium\/tests\/cases\/g11n\/multibyte\/adapter\/MbstringTest.php","volume":2222.6767504471,"length":620,"vocabulary":12,"effort":171.46,"difficulty":"0.077142857142857","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":228,"logicalLoc":222,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/g11n\/MultibyteTest.php":{"filename":"lithium\/tests\/cases\/g11n\/MultibyteTest.php","volume":3372.8544456742,"length":794,"vocabulary":19,"effort":380.4,"difficulty":"0.11278195488722","time":21,"bugs":0.08,"cyclomaticComplexity":4,"loc":313,"logicalLoc":272,"maintenabilityIndex":"48.972797503457"},"lithium\/tests\/cases\/net\/http\/AuthTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/AuthTest.php","volume":1090.0224761748,"length":279,"vocabulary":15,"effort":153.28,"difficulty":"0.140625","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":104,"logicalLoc":98,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/http\/MediaTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/MediaTest.php","volume":14190.413856151,"length":3137,"vocabulary":23,"effort":359.01,"difficulty":"0.025299600532623","time":20,"bugs":0.08,"cyclomaticComplexity":10,"loc":1074,"logicalLoc":982,"maintenabilityIndex":"28.265604968351"},"lithium\/tests\/cases\/net\/http\/MessageTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/MessageTest.php","volume":995.41828417995,"length":269,"vocabulary":13,"effort":130.98,"difficulty":"0.13157894736842","time":7,"bugs":0.03,"cyclomaticComplexity":0,"loc":93,"logicalLoc":87,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/http\/RequestTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/RequestTest.php","volume":4909.0428723417,"length":1201,"vocabulary":17,"effort":205.86,"difficulty":"0.041935483870968","time":11,"bugs":0.05,"cyclomaticComplexity":0,"loc":449,"logicalLoc":439,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/http\/ResponseTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/ResponseTest.php","volume":7144.1471408488,"length":1653,"vocabulary":20,"effort":265.83,"difficulty":"0.037209302325581","time":15,"bugs":0.06,"cyclomaticComplexity":0,"loc":619,"logicalLoc":600,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/http\/RouterTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/RouterTest.php","volume":24747.360271325,"length":5726,"vocabulary":20,"effort":256.37,"difficulty":"0.010359339592101","time":14,"bugs":0.06,"cyclomaticComplexity":7,"loc":1895,"logicalLoc":1806,"maintenabilityIndex":"20.228318064983"},"lithium\/tests\/cases\/net\/http\/RouteTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/RouteTest.php","volume":12914.257729467,"length":3097,"vocabulary":18,"effort":216.14,"difficulty":"0.01673640167364","time":12,"bugs":0.05,"cyclomaticComplexity":3,"loc":885,"logicalLoc":800,"maintenabilityIndex":"34.501792186836"},"lithium\/tests\/cases\/net\/http\/ServiceTest.php":{"filename":"lithium\/tests\/cases\/net\/http\/ServiceTest.php","volume":4438.9846455979,"length":1086,"vocabulary":17,"effort":229.91,"difficulty":"0.051792828685259","time":13,"bugs":0.05,"cyclomaticComplexity":0,"loc":300,"logicalLoc":294,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/MessageTest.php":{"filename":"lithium\/tests\/cases\/net\/MessageTest.php","volume":1058.7673514099,"length":271,"vocabulary":15,"effort":187.85,"difficulty":"0.17741935483871","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":96,"logicalLoc":90,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/socket\/ContextTest.php":{"filename":"lithium\/tests\/cases\/net\/socket\/ContextTest.php","volume":2256.0464655312,"length":522,"vocabulary":20,"effort":329.65,"difficulty":"0.14611872146119","time":18,"bugs":0.07,"cyclomaticComplexity":0,"loc":181,"logicalLoc":175,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/socket\/CurlTest.php":{"filename":"lithium\/tests\/cases\/net\/socket\/CurlTest.php","volume":3759.4158493976,"length":885,"vocabulary":19,"effort":306.47,"difficulty":"0.081521739130435","time":17,"bugs":0.07,"cyclomaticComplexity":0,"loc":251,"logicalLoc":245,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/socket\/StreamTest.php":{"filename":"lithium\/tests\/cases\/net\/socket\/StreamTest.php","volume":2118.3219007327,"length":508,"vocabulary":18,"effort":287.93,"difficulty":"0.13592233009709","time":16,"bugs":0.06,"cyclomaticComplexity":0,"loc":178,"logicalLoc":172,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/net\/SocketTest.php":{"filename":"lithium\/tests\/cases\/net\/SocketTest.php","volume":277.53297886058,"length":75,"vocabulary":13,"effort":154.18,"difficulty":"0.55555555555556","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":31,"logicalLoc":25,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/security\/auth\/adapter\/FormTest.php":{"filename":"lithium\/tests\/cases\/security\/auth\/adapter\/FormTest.php","volume":5003.0595233991,"length":1106,"vocabulary":23,"effort":289.37,"difficulty":"0.057838660578387","time":16,"bugs":0.06,"cyclomaticComplexity":3,"loc":414,"logicalLoc":371,"maintenabilityIndex":"45.432773799784"},"lithium\/tests\/cases\/security\/auth\/adapter\/HttpTest.php":{"filename":"lithium\/tests\/cases\/security\/auth\/adapter\/HttpTest.php","volume":1776,"length":444,"vocabulary":16,"effort":219.71,"difficulty":"0.12371134020619","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":126,"logicalLoc":120,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/security\/AuthTest.php":{"filename":"lithium\/tests\/cases\/security\/AuthTest.php","volume":1640,"length":410,"vocabulary":16,"effort":215.08,"difficulty":"0.13114754098361","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":152,"logicalLoc":146,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/security\/PasswordTest.php":{"filename":"lithium\/tests\/cases\/security\/PasswordTest.php","volume":1089.8286002192,"length":304,"vocabulary":12,"effort":188.62,"difficulty":"0.17307692307692","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":123,"logicalLoc":94,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/security\/validation\/FormSignatureTest.php":{"filename":"lithium\/tests\/cases\/security\/validation\/FormSignatureTest.php","volume":469.95584420392,"length":127,"vocabulary":13,"effort":103.67,"difficulty":"0.22058823529412","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":67,"logicalLoc":53,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/security\/validation\/RequestTokenTest.php":{"filename":"lithium\/tests\/cases\/security\/validation\/RequestTokenTest.php","volume":992.663737548,"length":226,"vocabulary":21,"effort":406.63,"difficulty":"0.40963855421687","time":23,"bugs":0.09,"cyclomaticComplexity":3,"loc":89,"logicalLoc":71,"maintenabilityIndex":"70.450806024026"},"lithium\/tests\/cases\/storage\/cache\/adapter\/ApcTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/adapter\/ApcTest.php","volume":3981.1215169251,"length":1019,"vocabulary":15,"effort":285.29,"difficulty":"0.071661237785016","time":16,"bugs":0.06,"cyclomaticComplexity":0,"loc":379,"logicalLoc":368,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/cache\/adapter\/FileTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/adapter\/FileTest.php","volume":2534.3671529433,"length":577,"vocabulary":21,"effort":463.27,"difficulty":"0.18279569892473","time":26,"bugs":0.1,"cyclomaticComplexity":6,"loc":201,"logicalLoc":183,"maintenabilityIndex":"54.275007451223"},"lithium\/tests\/cases\/storage\/cache\/adapter\/MemcacheTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/adapter\/MemcacheTest.php","volume":5412.5626518721,"length":1298,"vocabulary":18,"effort":330.18,"difficulty":"0.061002178649237","time":18,"bugs":0.07,"cyclomaticComplexity":2,"loc":390,"logicalLoc":379,"maintenabilityIndex":"44.494372232577"},"lithium\/tests\/cases\/storage\/cache\/adapter\/MemoryTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/adapter\/MemoryTest.php","volume":2457.4341846378,"length":629,"vocabulary":15,"effort":280.12,"difficulty":"0.1139896373057","time":16,"bugs":0.06,"cyclomaticComplexity":0,"loc":184,"logicalLoc":178,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/cache\/adapter\/RedisTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/adapter\/RedisTest.php","volume":6039.4364563208,"length":1375,"vocabulary":21,"effort":458.35,"difficulty":"0.075892857142857","time":25,"bugs":0.1,"cyclomaticComplexity":2,"loc":418,"logicalLoc":407,"maintenabilityIndex":"41.634110505381"},"lithium\/tests\/cases\/storage\/cache\/adapter\/XCacheTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/adapter\/XCacheTest.php","volume":4240.9194693241,"length":951,"vocabulary":22,"effort":589.47,"difficulty":"0.13899613899614","time":33,"bugs":0.13,"cyclomaticComplexity":3,"loc":349,"logicalLoc":333,"maintenabilityIndex":"43.483446929818"},"lithium\/tests\/cases\/storage\/cache\/strategy\/Base64Test.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/strategy\/Base64Test.php","volume":231.7819184487,"length":67,"vocabulary":11,"effort":104.3,"difficulty":"0.45","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":33,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/cache\/strategy\/JsonTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/strategy\/JsonTest.php","volume":270.1320994243,"length":73,"vocabulary":13,"effort":168.83,"difficulty":"0.625","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":33,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/cache\/strategy\/SerializerTest.php":{"filename":"lithium\/tests\/cases\/storage\/cache\/strategy\/SerializerTest.php","volume":259.03078026988,"length":70,"vocabulary":13,"effort":176.61,"difficulty":"0.68181818181818","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":33,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/CacheTest.php":{"filename":"lithium\/tests\/cases\/storage\/CacheTest.php","volume":8395.7309904418,"length":1856,"vocabulary":23,"effort":439.45,"difficulty":"0.052341597796143","time":24,"bugs":0.1,"cyclomaticComplexity":4,"loc":656,"logicalLoc":650,"maintenabilityIndex":"34.109475504074"},"lithium\/tests\/cases\/storage\/session\/adapter\/CookieTest.php":{"filename":"lithium\/tests\/cases\/storage\/session\/adapter\/CookieTest.php","volume":3582.8783906616,"length":829,"vocabulary":20,"effort":365.13,"difficulty":"0.10191082802548","time":20,"bugs":0.08,"cyclomaticComplexity":3,"loc":273,"logicalLoc":262,"maintenabilityIndex":"49.858820248993"},"lithium\/tests\/cases\/storage\/session\/adapter\/MemoryTest.php":{"filename":"lithium\/tests\/cases\/storage\/session\/adapter\/MemoryTest.php","volume":1549.5934532774,"length":407,"vocabulary":14,"effort":190.81,"difficulty":"0.12313432835821","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":172,"logicalLoc":135,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/session\/adapter\/PhpTest.php":{"filename":"lithium\/tests\/cases\/storage\/session\/adapter\/PhpTest.php","volume":3556.9460262303,"length":853,"vocabulary":18,"effort":330.88,"difficulty":"0.093023255813954","time":18,"bugs":0.07,"cyclomaticComplexity":3,"loc":306,"logicalLoc":296,"maintenabilityIndex":"48.394365999781"},"lithium\/tests\/cases\/storage\/session\/strategy\/EncryptTest.php":{"filename":"lithium\/tests\/cases\/storage\/session\/strategy\/EncryptTest.php","volume":1080.5283976972,"length":292,"vocabulary":13,"effort":144.71,"difficulty":"0.13392857142857","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":98,"logicalLoc":89,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/session\/strategy\/HmacTest.php":{"filename":"lithium\/tests\/cases\/storage\/session\/strategy\/HmacTest.php","volume":1119.3623470849,"length":294,"vocabulary":14,"effort":192.39,"difficulty":"0.171875","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":97,"logicalLoc":91,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/storage\/SessionTest.php":{"filename":"lithium\/tests\/cases\/storage\/SessionTest.php","volume":4357.5716265072,"length":1045,"vocabulary":18,"effort":265.82,"difficulty":"0.061002178649237","time":15,"bugs":0.06,"cyclomaticComplexity":1,"loc":311,"logicalLoc":286,"maintenabilityIndex":"50.342271847154"},"lithium\/tests\/cases\/template\/helper\/FormTest.php":{"filename":"lithium\/tests\/cases\/template\/helper\/FormTest.php","volume":24806.88383358,"length":5949,"vocabulary":18,"effort":183.08,"difficulty":"0.007380073800738","time":10,"bugs":0.04,"cyclomaticComplexity":1,"loc":1486,"logicalLoc":1418,"maintenabilityIndex":"26.344955423024"},"lithium\/tests\/cases\/template\/helper\/HtmlTest.php":{"filename":"lithium\/tests\/cases\/template\/helper\/HtmlTest.php","volume":6384.6350527057,"length":1503,"vocabulary":19,"effort":189.88,"difficulty":"0.029739776951673","time":11,"bugs":0.04,"cyclomaticComplexity":2,"loc":453,"logicalLoc":403,"maintenabilityIndex":"46.376563917783"},"lithium\/tests\/cases\/template\/helper\/SecurityTest.php":{"filename":"lithium\/tests\/cases\/template\/helper\/SecurityTest.php","volume":1100.8602003808,"length":264,"vocabulary":18,"effort":268.04,"difficulty":"0.24347826086957","time":15,"bugs":0.06,"cyclomaticComplexity":0,"loc":101,"logicalLoc":85,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/template\/HelperTest.php":{"filename":"lithium\/tests\/cases\/template\/HelperTest.php","volume":2004,"length":501,"vocabulary":16,"effort":223.7,"difficulty":"0.11162790697674","time":12,"bugs":0.05,"cyclomaticComplexity":0,"loc":165,"logicalLoc":142,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/template\/view\/adapter\/FileTest.php":{"filename":"lithium\/tests\/cases\/template\/view\/adapter\/FileTest.php","volume":1295.7257206764,"length":317,"vocabulary":17,"effort":166.93,"difficulty":"0.12883435582822","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":104,"logicalLoc":94,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/template\/view\/adapter\/SimpleTest.php":{"filename":"lithium\/tests\/cases\/template\/view\/adapter\/SimpleTest.php","volume":310.83693632385,"length":84,"vocabulary":13,"effort":145.7,"difficulty":"0.46875","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":37,"logicalLoc":31,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/template\/view\/CompilerTest.php":{"filename":"lithium\/tests\/cases\/template\/view\/CompilerTest.php","volume":1300,"length":325,"vocabulary":16,"effort":193.51,"difficulty":"0.14885496183206","time":11,"bugs":0.04,"cyclomaticComplexity":1,"loc":118,"logicalLoc":112,"maintenabilityIndex":"67.18060649327"},"lithium\/tests\/cases\/template\/view\/RendererTest.php":{"filename":"lithium\/tests\/cases\/template\/view\/RendererTest.php","volume":4899.6618766947,"length":1175,"vocabulary":18,"effort":260.32,"difficulty":"0.053130929791271","time":14,"bugs":0.06,"cyclomaticComplexity":0,"loc":290,"logicalLoc":271,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/template\/ViewTest.php":{"filename":"lithium\/tests\/cases\/template\/ViewTest.php","volume":3365.1294761639,"length":807,"vocabulary":18,"effort":236.74,"difficulty":"0.07035175879397","time":13,"bugs":0.05,"cyclomaticComplexity":0,"loc":277,"logicalLoc":265,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/ControllerTest.php":{"filename":"lithium\/tests\/cases\/test\/ControllerTest.php","volume":76.404346182409,"length":23,"vocabulary":10,"effort":76.4,"difficulty":"1","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/DispatcherTest.php":{"filename":"lithium\/tests\/cases\/test\/DispatcherTest.php","volume":882.95727460753,"length":226,"vocabulary":15,"effort":273.59,"difficulty":"0.30985915492958","time":15,"bugs":0.06,"cyclomaticComplexity":0,"loc":82,"logicalLoc":76,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/filter\/AffectedTest.php":{"filename":"lithium\/tests\/cases\/test\/filter\/AffectedTest.php","volume":1005.1416994232,"length":264,"vocabulary":14,"effort":167.52,"difficulty":"0.16666666666667","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":97,"logicalLoc":91,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/filter\/ComplexityTest.php":{"filename":"lithium\/tests\/cases\/test\/filter\/ComplexityTest.php","volume":1859.7865506433,"length":446,"vocabulary":18,"effort":311.56,"difficulty":"0.16752577319588","time":17,"bugs":0.07,"cyclomaticComplexity":0,"loc":204,"logicalLoc":160,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/GroupTest.php":{"filename":"lithium\/tests\/cases\/test\/GroupTest.php","volume":2340,"length":585,"vocabulary":16,"effort":268.71,"difficulty":"0.11483253588517","time":15,"bugs":0.06,"cyclomaticComplexity":0,"loc":234,"logicalLoc":228,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/IntegrationTest.php":{"filename":"lithium\/tests\/cases\/test\/IntegrationTest.php","volume":127.99896988958,"length":37,"vocabulary":11,"effort":170.67,"difficulty":"1.3333333333333","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":25,"logicalLoc":19,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/MockerChainTest.php":{"filename":"lithium\/tests\/cases\/test\/MockerChainTest.php","volume":2444.321859961,"length":642,"vocabulary":14,"effort":189.48,"difficulty":"0.077519379844961","time":11,"bugs":0.04,"cyclomaticComplexity":0,"loc":172,"logicalLoc":166,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/MockerTest.php":{"filename":"lithium\/tests\/cases\/test\/MockerTest.php","volume":4924,"length":1231,"vocabulary":16,"effort":248.27,"difficulty":"0.050420168067227","time":14,"bugs":0.06,"cyclomaticComplexity":0,"loc":460,"logicalLoc":450,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/ReportTest.php":{"filename":"lithium\/tests\/cases\/test\/ReportTest.php","volume":1027.512226645,"length":263,"vocabulary":15,"effort":173.89,"difficulty":"0.16923076923077","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":94,"logicalLoc":88,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/test\/UnitTest.php":{"filename":"lithium\/tests\/cases\/test\/UnitTest.php","volume":23126.403825078,"length":4980,"vocabulary":25,"effort":457.09,"difficulty":"0.019764705882353","time":25,"bugs":0.1,"cyclomaticComplexity":1,"loc":1619,"logicalLoc":1607,"maintenabilityIndex":"19.560207673206"},"lithium\/tests\/cases\/util\/collection\/FiltersTest.php":{"filename":"lithium\/tests\/cases\/util\/collection\/FiltersTest.php","volume":772,"length":193,"vocabulary":16,"effort":206.22,"difficulty":"0.26712328767123","time":11,"bugs":0.05,"cyclomaticComplexity":0,"loc":67,"logicalLoc":61,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/util\/CollectionTest.php":{"filename":"lithium\/tests\/cases\/util\/CollectionTest.php","volume":8423.9551282513,"length":1814,"vocabulary":25,"effort":517.26,"difficulty":"0.06140350877193","time":29,"bugs":0.12,"cyclomaticComplexity":11,"loc":485,"logicalLoc":434,"maintenabilityIndex":"39.57272525769"},"lithium\/tests\/cases\/util\/InflectorTest.php":{"filename":"lithium\/tests\/cases\/util\/InflectorTest.php","volume":6102.562469981,"length":1412,"vocabulary":20,"effort":269.23,"difficulty":"0.044117647058824","time":15,"bugs":0.06,"cyclomaticComplexity":1,"loc":396,"logicalLoc":331,"maintenabilityIndex":"47.908738947973"},"lithium\/tests\/cases\/util\/SetTest.php":{"filename":"lithium\/tests\/cases\/util\/SetTest.php","volume":23652,"length":5913,"vocabulary":16,"effort":185.02,"difficulty":"0.0078226857887875","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":1508,"logicalLoc":1502,"maintenabilityIndex":"INF"},"lithium\/tests\/cases\/util\/StringTest.php":{"filename":"lithium\/tests\/cases\/util\/StringTest.php","volume":6541.0705884584,"length":1446,"vocabulary":23,"effort":387.17,"difficulty":"0.059190031152648","time":22,"bugs":0.09,"cyclomaticComplexity":6,"loc":479,"logicalLoc":417,"maintenabilityIndex":"41.865806389015"},"lithium\/tests\/cases\/util\/ValidatorTest.php":{"filename":"lithium\/tests\/cases\/util\/ValidatorTest.php","volume":25892.711207281,"length":5895,"vocabulary":21,"effort":431.55,"difficulty":"0.016666666666667","time":24,"bugs":0.1,"cyclomaticComplexity":4,"loc":1216,"logicalLoc":1125,"maintenabilityIndex":"25.317038030737"},"lithium\/tests\/ci\/config\/bootstrap.couchdb.php":{"filename":"lithium\/tests\/ci\/config\/bootstrap.couchdb.php","volume":98.257422272016,"length":35,"vocabulary":7,"effort":21.36,"difficulty":"0.21739130434783","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":20,"logicalLoc":17,"maintenabilityIndex":"INF"},"lithium\/tests\/ci\/config\/bootstrap.mongodb.php":{"filename":"lithium\/tests\/ci\/config\/bootstrap.mongodb.php","volume":89.835357505843,"length":32,"vocabulary":7,"effort":22.46,"difficulty":"0.25","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":19,"logicalLoc":16,"maintenabilityIndex":"INF"},"lithium\/tests\/ci\/config\/bootstrap.mysql.php":{"filename":"lithium\/tests\/ci\/config\/bootstrap.mysql.php","volume":123.52361657053,"length":44,"vocabulary":7,"effort":19.3,"difficulty":"0.15625","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":23,"logicalLoc":20,"maintenabilityIndex":"INF"},"lithium\/tests\/ci\/config\/bootstrap.pgsql.php":{"filename":"lithium\/tests\/ci\/config\/bootstrap.pgsql.php","volume":123.52361657053,"length":44,"vocabulary":7,"effort":19.3,"difficulty":"0.15625","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":23,"logicalLoc":20,"maintenabilityIndex":"INF"},"lithium\/tests\/ci\/config\/bootstrap.sqlite.php":{"filename":"lithium\/tests\/ci\/config\/bootstrap.sqlite.php","volume":98.257422272016,"length":35,"vocabulary":7,"effort":21.36,"difficulty":"0.21739130434783","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":20,"logicalLoc":17,"maintenabilityIndex":"INF"},"lithium\/tests\/ci\/config\/libraries.php":{"filename":"lithium\/tests\/ci\/config\/libraries.php","volume":262.70527509087,"length":63,"vocabulary":18,"effort":245.19,"difficulty":"0.93333333333333","time":14,"bugs":0.05,"cyclomaticComplexity":3,"loc":32,"logicalLoc":24,"maintenabilityIndex":"90.65227333695"},"lithium\/tests\/ci\/depends.php":{"filename":"lithium\/tests\/ci\/depends.php","volume":999.52182515721,"length":218,"vocabulary":24,"effort":341.72,"difficulty":"0.34188034188034","time":19,"bugs":0.08,"cyclomaticComplexity":8,"loc":129,"logicalLoc":99,"maintenabilityIndex":"65.74403009416"},"lithium\/tests\/fixture\/model\/gallery\/Comments.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/Comments.php","volume":57.058650025962,"length":18,"vocabulary":9,"effort":73.36,"difficulty":"1.2857142857143","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":15,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/export\/testManyToOne.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/export\/testManyToOne.php","volume":276.3094432916,"length":119,"vocabulary":5,"effort":7.6,"difficulty":"0.027522935779817","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":48,"logicalLoc":48,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/export\/testOneToMany.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/export\/testOneToMany.php","volume":185.75424759099,"length":80,"vocabulary":5,"effort":7.63,"difficulty":"0.041095890410959","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":36,"logicalLoc":36,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/Galleries.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/Galleries.php","volume":73.082418087522,"length":22,"vocabulary":10,"effort":85.26,"difficulty":"1.1666666666667","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/GalleriesFixture.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/GalleriesFixture.php","volume":295.65160044498,"length":89,"vocabulary":10,"effort":57.22,"difficulty":"0.19354838709677","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":40,"logicalLoc":34,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/Images.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/Images.php","volume":89.692058561959,"length":27,"vocabulary":10,"effort":78.48,"difficulty":"0.875","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/ImagesFixture.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/ImagesFixture.php","volume":534.83042327687,"length":161,"vocabulary":10,"effort":52.18,"difficulty":"0.097560975609756","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":67,"logicalLoc":61,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/ImagesTags.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/ImagesTags.php","volume":76.404346182409,"length":23,"vocabulary":10,"effort":80.22,"difficulty":"1.05","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/ImagesTagsFixture.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/ImagesTagsFixture.php","volume":382.02173091205,"length":115,"vocabulary":10,"effort":67.42,"difficulty":"0.17647058823529","time":4,"bugs":0.01,"cyclomaticComplexity":0,"loc":31,"logicalLoc":25,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/Tags.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/Tags.php","volume":48,"length":16,"vocabulary":8,"effort":72,"difficulty":"1.5","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":16,"logicalLoc":10,"maintenabilityIndex":"INF"},"lithium\/tests\/fixture\/model\/gallery\/TagsFixture.php":{"filename":"lithium\/tests\/fixture\/model\/gallery\/TagsFixture.php","volume":348.80244996317,"length":105,"vocabulary":10,"effort":61.55,"difficulty":"0.17647058823529","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":30,"logicalLoc":24,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/analysis\/LoggerTest.php":{"filename":"lithium\/tests\/integration\/analysis\/LoggerTest.php","volume":399.77226681605,"length":105,"vocabulary":14,"effort":164.91,"difficulty":"0.4125","time":9,"bugs":0.04,"cyclomaticComplexity":0,"loc":46,"logicalLoc":37,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/data\/Base.php":{"filename":"lithium\/tests\/integration\/data\/Base.php","volume":714.72278905701,"length":158,"vocabulary":23,"effort":476.48,"difficulty":"0.66666666666667","time":26,"bugs":0.11,"cyclomaticComplexity":6,"loc":57,"logicalLoc":51,"maintenabilityIndex":"74.826906174566"},"lithium\/tests\/integration\/data\/CrudTest.php":{"filename":"lithium\/tests\/integration\/data\/CrudTest.php","volume":2187.6826694234,"length":515,"vocabulary":19,"effort":321.72,"difficulty":"0.14705882352941","time":18,"bugs":0.07,"cyclomaticComplexity":5,"loc":157,"logicalLoc":138,"maintenabilityIndex":"60.785175250007"},"lithium\/tests\/integration\/data\/DatabaseTest.php":{"filename":"lithium\/tests\/integration\/data\/DatabaseTest.php","volume":3475.4015755466,"length":758,"vocabulary":24,"effort":419.99,"difficulty":"0.12084592145015","time":23,"bugs":0.09,"cyclomaticComplexity":4,"loc":255,"logicalLoc":240,"maintenabilityIndex":"50.485601051157"},"lithium\/tests\/integration\/data\/DocumentTest.php":{"filename":"lithium\/tests\/integration\/data\/DocumentTest.php","volume":635.82827198362,"length":167,"vocabulary":14,"effort":205.11,"difficulty":"0.32258064516129","time":11,"bugs":0.05,"cyclomaticComplexity":0,"loc":61,"logicalLoc":52,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/data\/FieldsTest.php":{"filename":"lithium\/tests\/integration\/data\/FieldsTest.php","volume":1547.128675861,"length":396,"vocabulary":15,"effort":174.05,"difficulty":"0.1125","time":10,"bugs":0.04,"cyclomaticComplexity":3,"loc":146,"logicalLoc":137,"maintenabilityIndex":"64.215046581052"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/MySqlSchemaTest.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/MySqlSchemaTest.php","volume":5139.9922912667,"length":1210,"vocabulary":19,"effort":241.69,"difficulty":"0.047021943573668","time":13,"bugs":0.05,"cyclomaticComplexity":2,"loc":443,"logicalLoc":443,"maintenabilityIndex":"43.588935124841"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/MySqlTest.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/MySqlTest.php","volume":6079.6672689406,"length":1344,"vocabulary":23,"effort":409.56,"difficulty":"0.067365269461078","time":23,"bugs":0.09,"cyclomaticComplexity":4,"loc":353,"logicalLoc":327,"maintenabilityIndex":"45.605363782333"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/pdo\/ResultTest.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/pdo\/ResultTest.php","volume":2497.439796004,"length":611,"vocabulary":17,"effort":269.43,"difficulty":"0.10788381742739","time":15,"bugs":0.06,"cyclomaticComplexity":3,"loc":184,"logicalLoc":161,"maintenabilityIndex":"59.327763655833"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/PostgreSqlSchemaTest.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/PostgreSqlSchemaTest.php","volume":4570.7700044653,"length":1076,"vocabulary":19,"effort":246.18,"difficulty":"0.053859964093357","time":14,"bugs":0.05,"cyclomaticComplexity":1,"loc":392,"logicalLoc":392,"maintenabilityIndex":"45.634030721847"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/PostgreSqlTest.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/PostgreSqlTest.php","volume":6455.1229112934,"length":1427,"vocabulary":23,"effort":407.98,"difficulty":"0.063202247191011","time":23,"bugs":0.09,"cyclomaticComplexity":4,"loc":367,"logicalLoc":344,"maintenabilityIndex":"44.8044230488"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/Sqlite3SchemaTest.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/Sqlite3SchemaTest.php","volume":4570.7700044653,"length":1076,"vocabulary":19,"effort":246.18,"difficulty":"0.053859964093357","time":14,"bugs":0.05,"cyclomaticComplexity":1,"loc":388,"logicalLoc":388,"maintenabilityIndex":"45.800186024556"},"lithium\/tests\/integration\/data\/source\/database\/adapter\/Sqlite3Test.php":{"filename":"lithium\/tests\/integration\/data\/source\/database\/adapter\/Sqlite3Test.php","volume":5089.0072005641,"length":1125,"vocabulary":23,"effort":420.97,"difficulty":"0.082720588235294","time":23,"bugs":0.09,"cyclomaticComplexity":4,"loc":308,"logicalLoc":281,"maintenabilityIndex":"47.918486478109"},"lithium\/tests\/integration\/data\/SourceTest.php":{"filename":"lithium\/tests\/integration\/data\/SourceTest.php","volume":3553.384795028,"length":809,"vocabulary":21,"effort":418.05,"difficulty":"0.11764705882353","time":23,"bugs":0.09,"cyclomaticComplexity":7,"loc":255,"logicalLoc":226,"maintenabilityIndex":"51.354648256007"},"lithium\/tests\/integration\/g11n\/CatalogInflectorTest.php":{"filename":"lithium\/tests\/integration\/g11n\/CatalogInflectorTest.php","volume":513.99291447778,"length":135,"vocabulary":14,"effort":146.22,"difficulty":"0.28448275862069","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":66,"logicalLoc":60,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/g11n\/CatalogValidatorTest.php":{"filename":"lithium\/tests\/integration\/g11n\/CatalogValidatorTest.php","volume":692.93859581448,"length":182,"vocabulary":14,"effort":148.49,"difficulty":"0.21428571428571","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":76,"logicalLoc":70,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/g11n\/ResourcesMessageTest.php":{"filename":"lithium\/tests\/integration\/g11n\/ResourcesMessageTest.php","volume":808.20055374394,"length":187,"vocabulary":20,"effort":354.28,"difficulty":"0.43835616438356","time":20,"bugs":0.08,"cyclomaticComplexity":4,"loc":106,"logicalLoc":75,"maintenabilityIndex":"70.213389540759"},"lithium\/tests\/integration\/g11n\/ResourcesValidatorTest.php":{"filename":"lithium\/tests\/integration\/g11n\/ResourcesValidatorTest.php","volume":1576.3873199281,"length":426,"vocabulary":13,"effort":144.18,"difficulty":"0.091463414634146","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":136,"logicalLoc":130,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/net\/http\/MediaTest.php":{"filename":"lithium\/tests\/integration\/net\/http\/MediaTest.php","volume":543.96463856674,"length":147,"vocabulary":13,"effort":107.36,"difficulty":"0.19736842105263","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":75,"logicalLoc":60,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/net\/http\/ServiceTest.php":{"filename":"lithium\/tests\/integration\/net\/http\/ServiceTest.php","volume":521.60762432189,"length":137,"vocabulary":14,"effort":155.7,"difficulty":"0.29850746268657","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":51,"logicalLoc":45,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/storage\/SessionTest.php":{"filename":"lithium\/tests\/integration\/storage\/SessionTest.php","volume":2246.1669089116,"length":607,"vocabulary":13,"effort":175.48,"difficulty":"0.078125","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":205,"logicalLoc":199,"maintenabilityIndex":"INF"},"lithium\/tests\/integration\/test\/FilterTest.php":{"filename":"lithium\/tests\/integration\/test\/FilterTest.php","volume":1876.5146124013,"length":372,"vocabulary":33,"effort":995.12,"difficulty":"0.53030303030303","time":55,"bugs":0.22,"cyclomaticComplexity":14,"loc":173,"logicalLoc":157,"maintenabilityIndex":"52.586945436457"},"lithium\/tests\/mocks\/action\/MockControllerRequest.php":{"filename":"lithium\/tests\/mocks\/action\/MockControllerRequest.php","volume":22,"length":11,"vocabulary":4,"effort":11,"difficulty":"0.5","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":13,"logicalLoc":7,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/action\/MockControllerResponse.php":{"filename":"lithium\/tests\/mocks\/action\/MockControllerResponse.php","volume":63,"length":21,"vocabulary":8,"effort":54,"difficulty":"0.85714285714286","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/action\/MockDispatcher.php":{"filename":"lithium\/tests\/mocks\/action\/MockDispatcher.php","volume":248,"length":62,"vocabulary":16,"effort":201.5,"difficulty":"0.8125","time":11,"bugs":0.04,"cyclomaticComplexity":1,"loc":37,"logicalLoc":26,"maintenabilityIndex":"90.628731300841"},"lithium\/tests\/mocks\/action\/MockMediaClass.php":{"filename":"lithium\/tests\/mocks\/action\/MockMediaClass.php","volume":110.70181179639,"length":32,"vocabulary":11,"effort":147.6,"difficulty":"1.3333333333333","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/action\/MockPostsController.php":{"filename":"lithium\/tests\/mocks\/action\/MockPostsController.php","volume":692.4121846913,"length":163,"vocabulary":19,"effort":250.27,"difficulty":"0.36144578313253","time":14,"bugs":0.06,"cyclomaticComplexity":2,"loc":70,"logicalLoc":64,"maintenabilityIndex":"74.749460455619"},"lithium\/tests\/mocks\/action\/MockRenderAltController.php":{"filename":"lithium\/tests\/mocks\/action\/MockRenderAltController.php","volume":114.71363126237,"length":31,"vocabulary":13,"effort":107.54,"difficulty":"0.9375","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/action\/MockRequestType.php":{"filename":"lithium\/tests\/mocks\/action\/MockRequestType.php","volume":79.248125036058,"length":25,"vocabulary":9,"effort":50.43,"difficulty":"0.63636363636364","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/action\/MockResponse.php":{"filename":"lithium\/tests\/mocks\/action\/MockResponse.php","volume":145.29612798277,"length":42,"vocabulary":11,"effort":134.12,"difficulty":"0.92307692307692","time":7,"bugs":0.03,"cyclomaticComplexity":0,"loc":25,"logicalLoc":19,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/analysis\/MockEmptyClass.php":{"filename":"lithium\/tests\/mocks\/analysis\/MockEmptyClass.php","volume":0,"length":0,"vocabulary":0,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":14,"logicalLoc":8,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/analysis\/MockInspector.php":{"filename":"lithium\/tests\/mocks\/analysis\/MockInspector.php","volume":60.228575027404,"length":19,"vocabulary":9,"effort":60.23,"difficulty":"1","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/analysis\/MockLoggerAdapter.php":{"filename":"lithium\/tests\/mocks\/analysis\/MockLoggerAdapter.php","volume":69,"length":23,"vocabulary":8,"effort":51.75,"difficulty":"0.75","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/console\/command\/MockCommandHelp.php":{"filename":"lithium\/tests\/mocks\/console\/command\/MockCommandHelp.php","volume":182.83308753678,"length":51,"vocabulary":12,"effort":112.19,"difficulty":"0.61363636363636","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":87,"logicalLoc":33,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/console\/command\/MockCreate.php":{"filename":"lithium\/tests\/mocks\/console\/command\/MockCreate.php","volume":114.71363126237,"length":31,"vocabulary":13,"effort":156.43,"difficulty":"1.3636363636364","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/console\/command\/MockLibraryService.php":{"filename":"lithium\/tests\/mocks\/console\/command\/MockLibraryService.php","volume":2121.5505573907,"length":469,"vocabulary":23,"effort":263.46,"difficulty":"0.12418300653595","time":15,"bugs":0.06,"cyclomaticComplexity":14,"loc":160,"logicalLoc":154,"maintenabilityIndex":"59.810096575319"},"lithium\/tests\/mocks\/console\/MockCommand.php":{"filename":"lithium\/tests\/mocks\/console\/MockCommand.php","volume":367.2477159872,"length":94,"vocabulary":15,"effort":155.37,"difficulty":"0.42307692307692","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":85,"logicalLoc":65,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/console\/MockDispatcherCommand.php":{"filename":"lithium\/tests\/mocks\/console\/MockDispatcherCommand.php","volume":251.2854248558,"length":66,"vocabulary":14,"effort":142.97,"difficulty":"0.56896551724138","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":36,"logicalLoc":30,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/console\/MockDispatcherRequest.php":{"filename":"lithium\/tests\/mocks\/console\/MockDispatcherRequest.php","volume":53.888725024519,"length":17,"vocabulary":9,"effort":69.29,"difficulty":"1.2857142857143","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/console\/MockResponse.php":{"filename":"lithium\/tests\/mocks\/console\/MockResponse.php","volume":283.21203755697,"length":79,"vocabulary":12,"effort":147.05,"difficulty":"0.51923076923077","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":38,"logicalLoc":32,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockAdapter.php":{"filename":"lithium\/tests\/mocks\/core\/MockAdapter.php","volume":60.228575027404,"length":19,"vocabulary":9,"effort":67.76,"difficulty":"1.125","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockCallable.php":{"filename":"lithium\/tests\/mocks\/core\/MockCallable.php","volume":233.02256254688,"length":65,"vocabulary":12,"effort":108.48,"difficulty":"0.46551724137931","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":37,"logicalLoc":31,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockErrorHandler.php":{"filename":"lithium\/tests\/mocks\/core\/MockErrorHandler.php","volume":86.485790465932,"length":25,"vocabulary":11,"effort":103.78,"difficulty":"1.2","time":6,"bugs":0.02,"cyclomaticComplexity":1,"loc":20,"logicalLoc":14,"maintenabilityIndex":"104.10745023575"},"lithium\/tests\/mocks\/core\/MockExposed.php":{"filename":"lithium\/tests\/mocks\/core\/MockExposed.php","volume":156.10155180436,"length":41,"vocabulary":14,"effort":135.56,"difficulty":"0.86842105263158","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":28,"logicalLoc":22,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockInitMethod.php":{"filename":"lithium\/tests\/mocks\/core\/MockInitMethod.php","volume":53.339743519094,"length":19,"vocabulary":7,"effort":17.78,"difficulty":"0.33333333333333","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockInstantiator.php":{"filename":"lithium\/tests\/mocks\/core\/MockInstantiator.php","volume":111.01319154423,"length":30,"vocabulary":13,"effort":151.38,"difficulty":"1.3636363636364","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockMethodFiltering.php":{"filename":"lithium\/tests\/mocks\/core\/MockMethodFiltering.php","volume":296.03517745129,"length":80,"vocabulary":13,"effort":134.56,"difficulty":"0.45454545454545","time":7,"bugs":0.03,"cyclomaticComplexity":0,"loc":39,"logicalLoc":33,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockObjectConfiguration.php":{"filename":"lithium\/tests\/mocks\/core\/MockObjectConfiguration.php","volume":298.38478741127,"length":73,"vocabulary":17,"effort":179.03,"difficulty":"0.6","time":10,"bugs":0.04,"cyclomaticComplexity":1,"loc":42,"logicalLoc":36,"maintenabilityIndex":"85.971715571282"},"lithium\/tests\/mocks\/core\/MockObjectForParents.php":{"filename":"lithium\/tests\/mocks\/core\/MockObjectForParents.php","volume":54,"length":18,"vocabulary":8,"effort":23.63,"difficulty":"0.4375","time":1,"bugs":0.01,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockRequest.php":{"filename":"lithium\/tests\/mocks\/core\/MockRequest.php","volume":225.85263754543,"length":63,"vocabulary":12,"effort":117.27,"difficulty":"0.51923076923077","time":7,"bugs":0.03,"cyclomaticComplexity":2,"loc":37,"logicalLoc":31,"maintenabilityIndex":"90.434692799752"},"lithium\/tests\/mocks\/core\/MockStaticFilteringExtended.php":{"filename":"lithium\/tests\/mocks\/core\/MockStaticFilteringExtended.php","volume":60.228575027404,"length":19,"vocabulary":9,"effort":30.11,"difficulty":"0.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockStaticInstantiator.php":{"filename":"lithium\/tests\/mocks\/core\/MockStaticInstantiator.php","volume":136.91626957122,"length":37,"vocabulary":13,"effort":120.81,"difficulty":"0.88235294117647","time":7,"bugs":0.03,"cyclomaticComplexity":0,"loc":23,"logicalLoc":17,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/core\/MockStaticMethodFiltering.php":{"filename":"lithium\/tests\/mocks\/core\/MockStaticMethodFiltering.php","volume":488.36132445106,"length":125,"vocabulary":15,"effort":148.99,"difficulty":"0.30508474576271","time":8,"bugs":0.03,"cyclomaticComplexity":2,"loc":59,"logicalLoc":53,"maintenabilityIndex":"80.501675363011"},"lithium\/tests\/mocks\/core\/MockStrategy.php":{"filename":"lithium\/tests\/mocks\/core\/MockStrategy.php","volume":60.228575027404,"length":19,"vocabulary":9,"effort":67.76,"difficulty":"1.125","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/collection\/MockMultiKeyRecordSet.php":{"filename":"lithium\/tests\/mocks\/data\/collection\/MockMultiKeyRecordSet.php","volume":299.73561716943,"length":81,"vocabulary":13,"effort":155.04,"difficulty":"0.51724137931034","time":9,"bugs":0.03,"cyclomaticComplexity":2,"loc":40,"logicalLoc":29,"maintenabilityIndex":"90.06323133235"},"lithium\/tests\/mocks\/data\/collection\/MockRecordSet.php":{"filename":"lithium\/tests\/mocks\/data\/collection\/MockRecordSet.php","volume":299.73561716943,"length":81,"vocabulary":13,"effort":155.04,"difficulty":"0.51724137931034","time":9,"bugs":0.03,"cyclomaticComplexity":2,"loc":40,"logicalLoc":29,"maintenabilityIndex":"90.06323133235"},"lithium\/tests\/mocks\/data\/MockBadConnection.php":{"filename":"lithium\/tests\/mocks\/data\/MockBadConnection.php","volume":53.888725024519,"length":17,"vocabulary":9,"effort":69.29,"difficulty":"1.2857142857143","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":15,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockCollection.php":{"filename":"lithium\/tests\/mocks\/data\/MockCollection.php","volume":99.657842846621,"length":30,"vocabulary":10,"effort":116.27,"difficulty":"1.1666666666667","time":6,"bugs":0.03,"cyclomaticComplexity":0,"loc":18,"logicalLoc":12,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockComment.php":{"filename":"lithium\/tests\/mocks\/data\/MockComment.php","volume":698.37847022182,"length":159,"vocabulary":21,"effort":312.43,"difficulty":"0.44736842105263","time":17,"bugs":0.07,"cyclomaticComplexity":1,"loc":51,"logicalLoc":45,"maintenabilityIndex":"79.46128935648"},"lithium\/tests\/mocks\/data\/MockConnections.php":{"filename":"lithium\/tests\/mocks\/data\/MockConnections.php","volume":42,"length":14,"vocabulary":8,"effort":42,"difficulty":"1","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":11,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockCouchModel.php":{"filename":"lithium\/tests\/mocks\/data\/MockCouchModel.php","volume":72.908275033173,"length":23,"vocabulary":9,"effort":72.91,"difficulty":"1","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockCreator.php":{"filename":"lithium\/tests\/mocks\/data\/MockCreator.php","volume":186.02797331369,"length":56,"vocabulary":10,"effort":62.01,"difficulty":"0.33333333333333","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":33,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockDocumentSource.php":{"filename":"lithium\/tests\/mocks\/data\/MockDocumentSource.php","volume":88.757900040385,"length":28,"vocabulary":9,"effort":49.93,"difficulty":"0.5625","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":20,"logicalLoc":14,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockModel.php":{"filename":"lithium\/tests\/mocks\/data\/MockModel.php","volume":234.41343573651,"length":60,"vocabulary":15,"effort":156.28,"difficulty":"0.66666666666667","time":9,"bugs":0.03,"cyclomaticComplexity":0,"loc":28,"logicalLoc":22,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockModelCompositePk.php":{"filename":"lithium\/tests\/mocks\/data\/MockModelCompositePk.php","volume":246.13410752334,"length":63,"vocabulary":15,"effort":152.77,"difficulty":"0.62068965517241","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":33,"logicalLoc":27,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockPost.php":{"filename":"lithium\/tests\/mocks\/data\/MockPost.php","volume":151.71802844378,"length":41,"vocabulary":13,"effort":103.44,"difficulty":"0.68181818181818","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":29,"logicalLoc":23,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockPostForValidates.php":{"filename":"lithium\/tests\/mocks\/data\/MockPostForValidates.php","volume":437.84212515144,"length":105,"vocabulary":18,"effort":151.56,"difficulty":"0.34615384615385","time":8,"bugs":0.03,"cyclomaticComplexity":2,"loc":50,"logicalLoc":44,"maintenabilityIndex":"83.427599831013"},"lithium\/tests\/mocks\/data\/MockPostObject.php":{"filename":"lithium\/tests\/mocks\/data\/MockPostObject.php","volume":83.048202372184,"length":25,"vocabulary":10,"effort":66.44,"difficulty":"0.8","time":4,"bugs":0.01,"cyclomaticComplexity":1,"loc":23,"logicalLoc":17,"maintenabilityIndex":"103.28118754561"},"lithium\/tests\/mocks\/data\/MockProduct.php":{"filename":"lithium\/tests\/mocks\/data\/MockProduct.php","volume":484.45443385546,"length":124,"vocabulary":15,"effort":117.84,"difficulty":"0.24324324324324","time":7,"bugs":0.03,"cyclomaticComplexity":1,"loc":63,"logicalLoc":57,"maintenabilityIndex":"80.702065045878"},"lithium\/tests\/mocks\/data\/MockSource.php":{"filename":"lithium\/tests\/mocks\/data\/MockSource.php","volume":2944.8388333931,"length":651,"vocabulary":23,"effort":274.95,"difficulty":"0.093366093366093","time":15,"bugs":0.06,"cyclomaticComplexity":7,"loc":197,"logicalLoc":191,"maintenabilityIndex":"56.259346964002"},"lithium\/tests\/mocks\/data\/MockSubProduct.php":{"filename":"lithium\/tests\/mocks\/data\/MockSubProduct.php","volume":159.45254855459,"length":48,"vocabulary":10,"effort":64.39,"difficulty":"0.40384615384615","time":4,"bugs":0.01,"cyclomaticComplexity":0,"loc":32,"logicalLoc":26,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockTag.php":{"filename":"lithium\/tests\/mocks\/data\/MockTag.php","volume":53.888725024519,"length":17,"vocabulary":9,"effort":80.83,"difficulty":"1.5","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":15,"logicalLoc":9,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/MockTagging.php":{"filename":"lithium\/tests\/mocks\/data\/MockTagging.php","volume":79.248125036058,"length":25,"vocabulary":9,"effort":54.86,"difficulty":"0.69230769230769","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":18,"logicalLoc":12,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/mock_database\/MockResult.php":{"filename":"lithium\/tests\/mocks\/data\/model\/mock_database\/MockResult.php","volume":244.22902139731,"length":66,"vocabulary":13,"effort":152.64,"difficulty":"0.625","time":8,"bugs":0.03,"cyclomaticComplexity":1,"loc":36,"logicalLoc":25,"maintenabilityIndex":"92.708184157095"},"lithium\/tests\/mocks\/data\/model\/MockDatabase.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDatabase.php","volume":1546.0957328181,"length":352,"vocabulary":21,"effort":273.79,"difficulty":"0.17708333333333","time":15,"bugs":0.06,"cyclomaticComplexity":6,"loc":127,"logicalLoc":116,"maintenabilityIndex":"64.39545500243"},"lithium\/tests\/mocks\/data\/model\/MockDatabaseComment.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDatabaseComment.php","volume":182.7060452188,"length":55,"vocabulary":10,"effort":56.42,"difficulty":"0.30882352941176","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":25,"logicalLoc":19,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockDatabasePost.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDatabasePost.php","volume":202.63761378813,"length":61,"vocabulary":10,"effort":55.99,"difficulty":"0.27631578947368","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":29,"logicalLoc":23,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockDatabasePostRevision.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDatabasePostRevision.php","volume":202.63761378813,"length":61,"vocabulary":10,"effort":54.56,"difficulty":"0.26923076923077","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":26,"logicalLoc":20,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockDatabaseTag.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDatabaseTag.php","volume":152.80869236482,"length":46,"vocabulary":10,"effort":59.43,"difficulty":"0.38888888888889","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":23,"logicalLoc":17,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockDatabaseTagging.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDatabaseTagging.php","volume":146.16483617504,"length":44,"vocabulary":10,"effort":61.39,"difficulty":"0.42","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":23,"logicalLoc":17,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockDocumentMultipleKey.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDocumentMultipleKey.php","volume":579.61957520048,"length":139,"vocabulary":18,"effort":186.54,"difficulty":"0.32183908045977","time":10,"bugs":0.04,"cyclomaticComplexity":3,"loc":49,"logicalLoc":43,"maintenabilityIndex":"82.626919694217"},"lithium\/tests\/mocks\/data\/model\/MockDocumentPost.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDocumentPost.php","volume":759.95840861758,"length":168,"vocabulary":23,"effort":283.12,"difficulty":"0.37254901960784","time":16,"bugs":0.06,"cyclomaticComplexity":4,"loc":64,"logicalLoc":58,"maintenabilityIndex":"75.543447178697"},"lithium\/tests\/mocks\/data\/model\/MockDocumentSource.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockDocumentSource.php","volume":856.21087077836,"length":192,"vocabulary":22,"effort":354.29,"difficulty":"0.41379310344828","time":20,"bugs":0.08,"cyclomaticComplexity":4,"loc":69,"logicalLoc":63,"maintenabilityIndex":"73.037767638015"},"lithium\/tests\/mocks\/data\/model\/MockGallery.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockGallery.php","volume":199.31568569324,"length":60,"vocabulary":10,"effort":55.07,"difficulty":"0.27631578947368","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":32,"logicalLoc":26,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockImage.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockImage.php","volume":239.17882283189,"length":72,"vocabulary":10,"effort":52.32,"difficulty":"0.21875","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":35,"logicalLoc":29,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockImageTag.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockImageTag.php","volume":209.2814699779,"length":63,"vocabulary":10,"effort":52.32,"difficulty":"0.25","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":31,"logicalLoc":25,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockQueryComment.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockQueryComment.php","volume":192.67182950347,"length":58,"vocabulary":10,"effort":54.68,"difficulty":"0.28378378378378","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":25,"logicalLoc":19,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockQueryPost.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockQueryPost.php","volume":231.7819184487,"length":67,"vocabulary":11,"effort":73.75,"difficulty":"0.31818181818182","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":26,"logicalLoc":20,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/model\/MockTag.php":{"filename":"lithium\/tests\/mocks\/data\/model\/MockTag.php","volume":169.41833283926,"length":51,"vocabulary":10,"effort":55.59,"difficulty":"0.328125","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":29,"logicalLoc":23,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockAdapter.php":{"filename":"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockAdapter.php","volume":1300.9003565611,"length":301,"vocabulary":20,"effort":330.39,"difficulty":"0.25396825396825","time":18,"bugs":0.07,"cyclomaticComplexity":8,"loc":165,"logicalLoc":136,"maintenabilityIndex":"60.775295667296"},"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockMySql.php":{"filename":"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockMySql.php","volume":102.97977094151,"length":31,"vocabulary":10,"effort":82.38,"difficulty":"0.8","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockPostgreSql.php":{"filename":"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockPostgreSql.php","volume":102.97977094151,"length":31,"vocabulary":10,"effort":82.38,"difficulty":"0.8","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockSqlite3.php":{"filename":"lithium\/tests\/mocks\/data\/source\/database\/adapter\/MockSqlite3.php","volume":102.97977094151,"length":31,"vocabulary":10,"effort":82.38,"difficulty":"0.8","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/source\/http\/adapter\/MockCouchPost.php":{"filename":"lithium\/tests\/mocks\/data\/source\/http\/adapter\/MockCouchPost.php","volume":383.63310013269,"length":92,"vocabulary":18,"effort":191.82,"difficulty":"0.5","time":11,"bugs":0.04,"cyclomaticComplexity":1,"loc":33,"logicalLoc":27,"maintenabilityIndex":"90.273344122771"},"lithium\/tests\/mocks\/data\/source\/http\/adapter\/MockSocket.php":{"filename":"lithium\/tests\/mocks\/data\/source\/http\/adapter\/MockSocket.php","volume":1012,"length":253,"vocabulary":16,"effort":142.87,"difficulty":"0.14117647058824","time":8,"bugs":0.03,"cyclomaticComplexity":4,"loc":99,"logicalLoc":93,"maintenabilityIndex":"71.450977853299"},"lithium\/tests\/mocks\/data\/source\/MockHttpModel.php":{"filename":"lithium\/tests\/mocks\/data\/source\/MockHttpModel.php","volume":367.87165571253,"length":90,"vocabulary":17,"effort":167.8,"difficulty":"0.45614035087719","time":9,"bugs":0.04,"cyclomaticComplexity":1,"loc":39,"logicalLoc":33,"maintenabilityIndex":"87.718158975271"},"lithium\/tests\/mocks\/data\/source\/MockMongoConnection.php":{"filename":"lithium\/tests\/mocks\/data\/source\/MockMongoConnection.php","volume":597.75472276304,"length":157,"vocabulary":14,"effort":142.94,"difficulty":"0.23913043478261","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":72,"logicalLoc":66,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/source\/MockMongoPost.php":{"filename":"lithium\/tests\/mocks\/data\/source\/MockMongoPost.php","volume":284.61114340072,"length":67,"vocabulary":19,"effort":220.34,"difficulty":"0.7741935483871","time":12,"bugs":0.05,"cyclomaticComplexity":2,"loc":28,"logicalLoc":22,"maintenabilityIndex":"92.710795002924"},"lithium\/tests\/mocks\/data\/source\/MockMongoSource.php":{"filename":"lithium\/tests\/mocks\/data\/source\/MockMongoSource.php","volume":331.23987821901,"length":87,"vocabulary":14,"effort":176.31,"difficulty":"0.53225806451613","time":10,"bugs":0.04,"cyclomaticComplexity":0,"loc":39,"logicalLoc":33,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/data\/source\/mongo_db\/MockResult.php":{"filename":"lithium\/tests\/mocks\/data\/source\/mongo_db\/MockResult.php","volume":720,"length":180,"vocabulary":16,"effort":167.14,"difficulty":"0.23214285714286","time":9,"bugs":0.04,"cyclomaticComplexity":1,"loc":83,"logicalLoc":72,"maintenabilityIndex":"75.100083592159"},"lithium\/tests\/mocks\/g11n\/catalog\/adapter\/MockGettext.php":{"filename":"lithium\/tests\/mocks\/g11n\/catalog\/adapter\/MockGettext.php","volume":271.86736086039,"length":64,"vocabulary":19,"effort":210.08,"difficulty":"0.77272727272727","time":12,"bugs":0.05,"cyclomaticComplexity":5,"loc":30,"logicalLoc":24,"maintenabilityIndex":"91.33841749362"},"lithium\/tests\/mocks\/g11n\/catalog\/MockAdapter.php":{"filename":"lithium\/tests\/mocks\/g11n\/catalog\/MockAdapter.php","volume":76.078200034616,"length":24,"vocabulary":9,"effort":76.08,"difficulty":"1","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/g11n\/multibyte\/adapter\/MockAdapter.php":{"filename":"lithium\/tests\/mocks\/g11n\/multibyte\/adapter\/MockAdapter.php","volume":204.1064654996,"length":59,"vocabulary":11,"effort":106.49,"difficulty":"0.52173913043478","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":41,"logicalLoc":35,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/net\/http\/MockSocket.php":{"filename":"lithium\/tests\/mocks\/net\/http\/MockSocket.php","volume":992.44215034327,"length":238,"vocabulary":18,"effort":218.92,"difficulty":"0.22058823529412","time":12,"bugs":0.05,"cyclomaticComplexity":4,"loc":84,"logicalLoc":78,"maintenabilityIndex":"72.081196199937"},"lithium\/tests\/mocks\/net\/http\/Template.php":{"filename":"lithium\/tests\/mocks\/net\/http\/Template.php","volume":89.692058561959,"length":27,"vocabulary":10,"effort":85.62,"difficulty":"0.95454545454545","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/security\/auth\/adapter\/MockAuthAdapter.php":{"filename":"lithium\/tests\/mocks\/security\/auth\/adapter\/MockAuthAdapter.php","volume":220.82658547934,"length":58,"vocabulary":14,"effort":145.75,"difficulty":"0.66","time":8,"bugs":0.03,"cyclomaticComplexity":3,"loc":33,"logicalLoc":27,"maintenabilityIndex":"91.448919253137"},"lithium\/tests\/mocks\/security\/auth\/adapter\/MockHttp.php":{"filename":"lithium\/tests\/mocks\/security\/auth\/adapter\/MockHttp.php","volume":86.370130467071,"length":26,"vocabulary":10,"effort":129.56,"difficulty":"1.5","time":7,"bugs":0.03,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/storage\/cache\/strategy\/MockConfigurizer.php":{"filename":"lithium\/tests\/mocks\/storage\/cache\/strategy\/MockConfigurizer.php","volume":139.52097998527,"length":42,"vocabulary":10,"effort":81.39,"difficulty":"0.58333333333333","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":49,"logicalLoc":21,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/storage\/cache\/strategy\/MockSerializer.php":{"filename":"lithium\/tests\/mocks\/storage\/cache\/strategy\/MockSerializer.php","volume":81,"length":27,"vocabulary":8,"effort":54,"difficulty":"0.66666666666667","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":41,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/storage\/session\/adapter\/MockPhp.php":{"filename":"lithium\/tests\/mocks\/storage\/session\/adapter\/MockPhp.php","volume":85.587975038942,"length":27,"vocabulary":9,"effort":31.12,"difficulty":"0.36363636363636","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":25,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/storage\/session\/adapter\/SessionStorageConditional.php":{"filename":"lithium\/tests\/mocks\/storage\/session\/adapter\/SessionStorageConditional.php","volume":172.97158093186,"length":50,"vocabulary":11,"effort":159.67,"difficulty":"0.92307692307692","time":9,"bugs":0.04,"cyclomaticComplexity":2,"loc":15,"logicalLoc":15,"maintenabilityIndex":"100.58999512679"},"lithium\/tests\/mocks\/storage\/session\/strategy\/MockCookieSession.php":{"filename":"lithium\/tests\/mocks\/storage\/session\/strategy\/MockCookieSession.php","volume":332.08570062672,"length":85,"vocabulary":15,"effort":132.83,"difficulty":"0.4","time":7,"bugs":0.03,"cyclomaticComplexity":1,"loc":42,"logicalLoc":31,"maintenabilityIndex":"89.94624268859"},"lithium\/tests\/mocks\/storage\/session\/strategy\/MockEncrypt.php":{"filename":"lithium\/tests\/mocks\/storage\/session\/strategy\/MockEncrypt.php","volume":101.43760004615,"length":32,"vocabulary":9,"effort":101.44,"difficulty":"1","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":20,"logicalLoc":14,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/helper\/MockFormPost.php":{"filename":"lithium\/tests\/mocks\/template\/helper\/MockFormPost.php","volume":182.7060452188,"length":55,"vocabulary":10,"effort":53.29,"difficulty":"0.29166666666667","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":24,"logicalLoc":18,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/helper\/MockFormPostInfo.php":{"filename":"lithium\/tests\/mocks\/template\/helper\/MockFormPostInfo.php","volume":142.6466250649,"length":45,"vocabulary":9,"effort":44.27,"difficulty":"0.31034482758621","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/helper\/MockFormRenderer.php":{"filename":"lithium\/tests\/mocks\/template\/helper\/MockFormRenderer.php","volume":228.89791911002,"length":56,"vocabulary":17,"effort":200.29,"difficulty":"0.875","time":11,"bugs":0.04,"cyclomaticComplexity":1,"loc":26,"logicalLoc":20,"maintenabilityIndex":"94.910352323597"},"lithium\/tests\/mocks\/template\/MockHelper.php":{"filename":"lithium\/tests\/mocks\/template\/MockHelper.php","volume":281.74426423226,"length":74,"vocabulary":14,"effort":185.95,"difficulty":"0.66","time":10,"bugs":0.04,"cyclomaticComplexity":1,"loc":37,"logicalLoc":25,"maintenabilityIndex":"91.681726971206"},"lithium\/tests\/mocks\/template\/MockRenderer.php":{"filename":"lithium\/tests\/mocks\/template\/MockRenderer.php","volume":63,"length":21,"vocabulary":8,"effort":94.5,"difficulty":"1.5","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":16,"logicalLoc":10,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/MockView.php":{"filename":"lithium\/tests\/mocks\/template\/MockView.php","volume":63.11663380286,"length":19,"vocabulary":10,"effort":63.12,"difficulty":"1","time":4,"bugs":0.01,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/view\/adapters\/testFile.html.php":{"filename":"lithium\/tests\/mocks\/template\/view\/adapters\/testFile.html.php","volume":0,"length":1,"vocabulary":1,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":0,"logicalLoc":0,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/view\/adapters\/testLayoutFile.html.php":{"filename":"lithium\/tests\/mocks\/template\/view\/adapters\/testLayoutFile.html.php","volume":13.931568569324,"length":6,"vocabulary":5,"effort":10.45,"difficulty":"0.75","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":2,"logicalLoc":2,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/template\/view\/adapters\/TestRenderer.php":{"filename":"lithium\/tests\/mocks\/template\/view\/adapters\/TestRenderer.php","volume":408.48552031842,"length":93,"vocabulary":21,"effort":324.39,"difficulty":"0.79411764705882","time":18,"bugs":0.07,"cyclomaticComplexity":2,"loc":34,"logicalLoc":34,"maintenabilityIndex":"83.647413872437"},"lithium\/tests\/mocks\/template\/view\/adapters\/testTypeFile.view-integration-test.php":{"filename":"lithium\/tests\/mocks\/template\/view\/adapters\/testTypeFile.view-integration-test.php","volume":0,"length":1,"vocabulary":1,"effort":0,"difficulty":"0","time":0,"bugs":0,"cyclomaticComplexity":0,"loc":0,"logicalLoc":0,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/cases\/MockErrorHandlingTest.php":{"filename":"lithium\/tests\/mocks\/test\/cases\/MockErrorHandlingTest.php","volume":54,"length":18,"vocabulary":8,"effort":54,"difficulty":"1","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/cases\/MockSetUpThrowsExceptionTest.php":{"filename":"lithium\/tests\/mocks\/test\/cases\/MockSetUpThrowsExceptionTest.php","volume":100.37895002019,"length":28,"vocabulary":12,"effort":83.65,"difficulty":"0.83333333333333","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":24,"logicalLoc":18,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/cases\/MockSkipThrowsExceptionTest.php":{"filename":"lithium\/tests\/mocks\/test\/cases\/MockSkipThrowsExceptionTest.php","volume":69.760489992635,"length":21,"vocabulary":10,"effort":34.88,"difficulty":"0.5","time":2,"bugs":0.01,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/cases\/MockTearDownThrowsExceptionTest.php":{"filename":"lithium\/tests\/mocks\/test\/cases\/MockTearDownThrowsExceptionTest.php","volume":100.37895002019,"length":28,"vocabulary":12,"effort":83.65,"difficulty":"0.83333333333333","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":23,"logicalLoc":17,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/cases\/MockTest.php":{"filename":"lithium\/tests\/mocks\/test\/cases\/MockTest.php","volume":57,"length":19,"vocabulary":8,"effort":57,"difficulty":"1","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":17,"logicalLoc":11,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/MockFilterClass.php":{"filename":"lithium\/tests\/mocks\/test\/MockFilterClass.php","volume":91.927825041827,"length":29,"vocabulary":9,"effort":58.5,"difficulty":"0.63636363636364","time":3,"bugs":0.01,"cyclomaticComplexity":1,"loc":26,"logicalLoc":20,"maintenabilityIndex":"101.31019804639"},"lithium\/tests\/mocks\/test\/MockFilterClassTest.php":{"filename":"lithium\/tests\/mocks\/test\/MockFilterClassTest.php","volume":89.692058561959,"length":27,"vocabulary":10,"effort":89.69,"difficulty":"1","time":5,"bugs":0.02,"cyclomaticComplexity":0,"loc":21,"logicalLoc":15,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/MockIntegrationTest.php":{"filename":"lithium\/tests\/mocks\/test\/MockIntegrationTest.php","volume":96,"length":32,"vocabulary":8,"effort":48,"difficulty":"0.5","time":3,"bugs":0.01,"cyclomaticComplexity":0,"loc":25,"logicalLoc":19,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/MockNonLi3StdClass.php":{"filename":"lithium\/tests\/mocks\/test\/MockNonLi3StdClass.php","volume":43.94436251226,"length":17,"vocabulary":6,"effort":13.73,"difficulty":"0.3125","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":16,"logicalLoc":16,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/MockStdClass.php":{"filename":"lithium\/tests\/mocks\/test\/MockStdClass.php","volume":498.67046663254,"length":122,"vocabulary":17,"effort":231.53,"difficulty":"0.46428571428571","time":13,"bugs":0.05,"cyclomaticComplexity":1,"loc":65,"logicalLoc":65,"maintenabilityIndex":"75.062437062923"},"lithium\/tests\/mocks\/test\/MockStdStaticClass.php":{"filename":"lithium\/tests\/mocks\/test\/MockStdStaticClass.php","volume":53.339743519094,"length":19,"vocabulary":7,"effort":16,"difficulty":"0.3","time":1,"bugs":0,"cyclomaticComplexity":0,"loc":16,"logicalLoc":16,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/test\/MockUnitTest.php":{"filename":"lithium\/tests\/mocks\/test\/MockUnitTest.php","volume":219.24725426257,"length":66,"vocabulary":10,"effort":76.26,"difficulty":"0.34782608695652","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":49,"logicalLoc":31,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/util\/MockCollectionMarker.php":{"filename":"lithium\/tests\/mocks\/util\/MockCollectionMarker.php","volume":93.013986656846,"length":28,"vocabulary":10,"effort":75.13,"difficulty":"0.80769230769231","time":4,"bugs":0.02,"cyclomaticComplexity":0,"loc":26,"logicalLoc":20,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/util\/MockCollectionObject.php":{"filename":"lithium\/tests\/mocks\/util\/MockCollectionObject.php","volume":160.18251441995,"length":41,"vocabulary":15,"effort":207.3,"difficulty":"1.2941176470588","time":12,"bugs":0.05,"cyclomaticComplexity":1,"loc":26,"logicalLoc":20,"maintenabilityIndex":"94.731468667328"},"lithium\/tests\/mocks\/util\/MockCollectionStringCast.php":{"filename":"lithium\/tests\/mocks\/util\/MockCollectionStringCast.php","volume":86.039100017308,"length":24,"vocabulary":12,"effort":152.96,"difficulty":"1.7777777777778","time":8,"bugs":0.03,"cyclomaticComplexity":0,"loc":18,"logicalLoc":12,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/util\/MockFilters.php":{"filename":"lithium\/tests\/mocks\/util\/MockFilters.php","volume":89.624062518029,"length":25,"vocabulary":12,"effort":100.83,"difficulty":"1.125","time":6,"bugs":0.02,"cyclomaticComplexity":0,"loc":19,"logicalLoc":13,"maintenabilityIndex":"INF"},"lithium\/tests\/mocks\/util\/MockStringObject.php":{"filename":"lithium\/tests\/mocks\/util\/MockStringObject.php","volume":107.24238017776,"length":31,"vocabulary":11,"effort":116.99,"difficulty":"1.0909090909091","time":6,"bugs":0.03,"cyclomaticComplexity":0,"loc":22,"logicalLoc":16,"maintenabilityIndex":"INF"},"lithium\/util\/collection\/Filters.php":{"filename":"lithium\/util\/collection\/Filters.php","volume":831.25025796968,"length":179,"vocabulary":25,"effort":397.55,"difficulty":"0.47826086956522","time":22,"bugs":0.09,"cyclomaticComplexity":8,"loc":216,"logicalLoc":60,"maintenabilityIndex":"73.069678833209"},"lithium\/util\/Collection.php":{"filename":"lithium\/util\/Collection.php","volume":3554.5931307429,"length":693,"vocabulary":35,"effort":874.54,"difficulty":"0.24603174603175","time":49,"bugs":0.19,"cyclomaticComplexity":38,"loc":582,"logicalLoc":243,"maintenabilityIndex":"45.9525300252"},"lithium\/util\/Inflector.php":{"filename":"lithium\/util\/Inflector.php","volume":5363.2314210001,"length":1093,"vocabulary":30,"effort":363.61,"difficulty":"0.067796610169492","time":20,"bugs":0.08,"cyclomaticComplexity":33,"loc":480,"logicalLoc":328,"maintenabilityIndex":"45.689357108727"},"lithium\/util\/Set.php":{"filename":"lithium\/util\/Set.php","volume":9047.2777613085,"length":1700,"vocabulary":40,"effort":1082.07,"difficulty":"0.11960132890365","time":60,"bugs":0.24,"cyclomaticComplexity":182,"loc":818,"logicalLoc":613,"maintenabilityIndex":"29.495084507726"},"lithium\/util\/String.php":{"filename":"lithium\/util\/String.php","volume":4556.5082222481,"length":845,"vocabulary":42,"effort":1296.85,"difficulty":"0.28461538461538","time":72,"bugs":0.29,"cyclomaticComplexity":60,"loc":458,"logicalLoc":292,"maintenabilityIndex":"40.822882818094"},"lithium\/util\/Validator.php":{"filename":"lithium\/util\/Validator.php","volume":5855.8043410476,"length":1093,"vocabulary":41,"effort":849.67,"difficulty":"0.14509803921569","time":47,"bugs":0.19,"cyclomaticComplexity":67,"loc":673,"logicalLoc":360,"maintenabilityIndex":"39.604825586249"}} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment