pug-php/js-phpize

View on GitHub
examples/scope.php

Summary

Maintainability
A
0 mins
Test Coverage
$count = 1;
$counter = function () use (&$count) {
  return $count;
};