Skip to content

Instantly share code, notes, and snippets.

@MacDada
Last active August 29, 2015 14:02
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MacDada/566238543b3a78404c7a to your computer and use it in GitHub Desktop.
Save MacDada/566238543b3a78404c7a to your computer and use it in GitHub Desktop.
<?php
// [...]
var_dump(class_exists('Hipchat\Hipchat', true)); // false
// it should detect that the class exists…
<?php
// [...]
new HipChat\HipChat('');
var_dump(class_exists('Hipchat\Hipchat', true)); // true
// it does detect that the class exists
// BUT if it doesn't, I get "Fatal error: Class 'HipChat\HipChat' not found"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment