Skip to content

Instantly share code, notes, and snippets.

@o-shabashov
Created May 30, 2016 09:23
Show Gist options
  • Save o-shabashov/af0f4302c6bd0d4d3bcf1c84e2240833 to your computer and use it in GitHub Desktop.
Save o-shabashov/af0f4302c6bd0d4d3bcf1c84e2240833 to your computer and use it in GitHub Desktop.
Yii2 today scope in ModelQuery
<?php
namespace app\models;
/**
* This is the ActiveQuery class for [[User]].
* @see User
*/
class UserQuery extends \yii\db\ActiveQuery
{
/**
* @return $this ActiveQuery
*/
public function today()
{
return $this->andWhere('date(starts_at) = date(utc_timestamp)');
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment