PHP Classes

File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.js.fixed

Recommend this page to a friend!
  Classes of milenmk   Simple PHP Password Manager   vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.js.fixed   Download  
File: vendor/squizlabs/php_codesniffer/src/Standards/Generic/Tests/ControlStructures/InlineControlStructureUnitTest.js.fixed
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Simple PHP Password Manager
Application to store and retrieve user password
Author: By
Last change:
Date: 1 year ago
Size: 565 bytes
 

Contents

Class file image Download
if (something) { print 'hello'; } if (something) { print 'hello'; } else { print 'hi'; } if (something) { print 'hello'; } else if (something) { print 'hi'; } for (i; i > 0; i--) { print 'hello'; } while (something) { print 'hello'; } do { i--; } while (something); do { i++; } while (i < 5); SomeClass.prototype.switch = function() { // do something }; if ($("#myid").rotationDegrees()=='90') { $('.modal').css({'transform': 'rotate(90deg)'}); } if ($("#myid").rotationDegrees()=='90') { $foo = {'transform': 'rotate(90deg)'}; }