Skip to content

Instantly share code, notes, and snippets.

@ahmed-abid
Created March 29, 2018 09:54
Show Gist options
  • Save ahmed-abid/dcdfcbf0f1ab9430710e7c26fd7ff34c to your computer and use it in GitHub Desktop.
Save ahmed-abid/dcdfcbf0f1ab9430710e7c26fd7ff34c to your computer and use it in GitHub Desktop.
simple aspect mock example
<?php
class UserModel
{
public static function tableName()
{
return 'users';
}
public static function someMethod($arg1, $arg2)
{
return $arg1 . ' '. $arg2;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment